Spaces:
Runtime error
Runtime error
File size: 298 Bytes
93c3b8a 4adfb59 93c3b8a e20a9b5 93c3b8a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # making app folder
WORKDIR /app
# copying files
COPY
# installing requirements
RUN apt-get update
RUN apt-get install ffmpeg -y
RUN pip install --upgrade pip
RUN pip install -r ./requirements.txt
# launching gradio app
ENV GRADIO_SERVER_NAME="0.0.0.0"
EXPOSE 7860
ENTRYPOINT python ./run.py |