Spaces:
Running
Running
File size: 253 Bytes
996635e 5200001 996635e 5200001 996635e 5200001 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.9.12-slim
WORKDIR /code
COPY requirements.txt $WORKDIR/requirements.txt
RUN pip install gradio --no-cache-dir
RUN pip install --no-cache-dir --upgrade -r $WORKDIR/requirements.txt
COPY . .
EXPOSE 7860
ENTRYPOINT ["python", "app.py"]
|