freddyaboulton's picture
Upload Dockerfile with huggingface_hub
3da062a
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"]