Paraformer-for-Chinese-Podcast / Dockerfile.origin
Yuekai Zhang
fix bug
8a5ea55
raw
history blame contribute delete
298 Bytes
FROM soar97/torch-paraformer:22.12
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y ffmpeg
COPY ./requirements-gradio.txt ./
RUN pip install --no-cache-dir --upgrade -r ./requirements-gradio.txt
COPY app.py ./
RUN chmod -R 777 /workspace/*
CMD ["python", "app.py"]