-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df5066e
commit ad33f65
Showing
3 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
FROM tensorflow/tensorflow:2.13.0 | ||
FROM tensorflow/tensorflow:2.18.0 | ||
RUN apt update | ||
RUN apt -y install ffmpeg aria2 wget nano | ||
RUN apt -y install ffmpeg aria2 wget nano git | ||
WORKDIR /inaseg | ||
COPY ./requirements.txt /inaseg/requirements.txt | ||
RUN pip install -r /inaseg/requirements.txt | ||
RUN pip install --force-reinstall git+https://github.com/grqz/yt-dlp.git@ie/bilibili/pi_fallbk | ||
RUN git clone https://github.com/ina-foss/inaSpeechSegmenter.git | ||
RUN cd inaSpeechSegmenter; pip install . | ||
RUN pip3 install -r /inaseg/requirements.txt | ||
RUN pip3 install --force-reinstall git+https://github.com/grqz/yt-dlp.git@ie/bilibili/pi_fallbk | ||
COPY . /inaseg | ||
RUN python /inaseg/biliupinit.py | ||
RUN python3 /inaseg/biliupinit.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
FROM tensorflow/tensorflow:2.13.0-gpu | ||
FROM tensorflow/tensorflow:2.18.0-gpu | ||
RUN apt update | ||
RUN apt -y install ffmpeg aria2 wget nano | ||
RUN apt -y install ffmpeg aria2 wget nano git | ||
WORKDIR /inaseg | ||
COPY ./requirements.txt /inaseg/requirements.txt | ||
RUN pip install -r /inaseg/requirements.txt | ||
RUN git clone https://github.com/ina-foss/inaSpeechSegmenter.git | ||
RUN cd inaSpeechSegmenter; pip install . | ||
RUN pip3 install -r /inaseg/requirements.txt | ||
RUN pip3 install --force-reinstall git+https://github.com/grqz/yt-dlp.git@ie/bilibili/pi_fallbk | ||
COPY . /inaseg | ||
RUN python /inaseg/biliupinit.py | ||
RUN python3 /inaseg/biliupinit.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
yt-dlp | ||
inaspeechsegmenter | ||
shazamio | ||
pyyaml | ||
filelock | ||
|