File size: 315 Bytes
d8548c0 | 1 2 3 4 5 6 7 8 9 | FROM python:3.11
ENV PYTHONUNBUFFERED 1
WORKDIR /usr/src/app
COPY . .
RUN apt-get -y update && apt-get -y upgrade && apt-get install -y --no-install-recommends ffmpeg
RUN pip install -r requirements.txt --no-cache-dir
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python", "app.py", "--port", "7860"] |