Spaces:
Runtime error
Runtime error
File size: 298 Bytes
e8bec2d 8a5ea55 e8bec2d 8a5ea55 dde9123 e8bec2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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"] |