gradio_richtextbox2 / Dockerfile
abidlabs's picture
abidlabs HF staff
Upload folder using huggingface_hub
24e9244
raw history blame
No virus
264 Bytes
FROM python:3.9
WORKDIR /code
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONUNBUFFERED=1 GRADIO_ALLOW_FLAGGING=never GRADIO_NUM_PORTS=1 GRADIO_SERVER_NAME=0.0.0.0 GRADIO_SERVER_PORT=7860 SYSTEM=spaces
CMD ["python", "app.py"]