simple_galleryv4-sse / Dockerfile
freddyaboulton's picture
Upload Dockerfile with huggingface_hub
3b05dcb
raw
history blame contribute delete
No virus
280 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
ENV GRADIO_SERVER_NAME="0.0.0.0"
ENV GRADIO_SERVER_PORT=7860
ENV GRADIO_ALLOW_FLAGGING="never"
CMD ["python", "app.py"]