initial commit
This commit is contained in:
20
Dockerfile.funasr-mr100
Normal file
20
Dockerfile.funasr-mr100
Normal file
@@ -0,0 +1,20 @@
|
||||
FROM corex:4.3.0
|
||||
|
||||
WORKDIR /root
|
||||
|
||||
COPY requirements.txt /root
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
RUN apt update && apt install -y vim net-tools
|
||||
|
||||
RUN pip install funasr==1.2.6 openai-whisper
|
||||
|
||||
ADD . /root/
|
||||
ADD nltk_data.tar.gz /root/
|
||||
RUN tar -xvzf nltk_data.tar.gz
|
||||
|
||||
RUN cp ./replaced_files/mr_v100/cif_predictor.py /usr/local/lib/python3.10/site-packages/funasr/models/paraformer/
|
||||
|
||||
EXPOSE 80
|
||||
ENTRYPOINT ["bash"]
|
||||
CMD ["./start_funasr.sh"]
|
||||
Reference in New Issue
Block a user