-
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
0d552ed
commit 7819f8b
Showing
2 changed files
with
59 additions
and
18 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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM armswdev/tensorflow-arm-neoverse:r24.07-tf-2.16.1-eigen | ||
RUN sudo groupmod -g 1001 ubuntu | ||
RUN sudo usermod -u 1001 -g 1001 ubuntu | ||
RUN sudo apt-get update --allow-insecure-repositories | ||
RUN sudo apt-get -y --allow-unauthenticated install ffmpeg aria2 wget nano git | ||
WORKDIR /inaseg | ||
RUN git clone https://github.com/lovegaoshi/inaSpeechSegmenter.git | ||
RUN cd inaSpeechSegmenter; pip install . | ||
COPY ./requirements.txt /inaseg/requirements.txt | ||
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/initialize.py |