DockFormerPP / Dockerfile
Simon Dürr
init from docs
3d87e1b
raw
history blame
161 Bytes
FROM python:3.8-slim
WORKDIR /usr/src/app
COPY . .
RUN pip install --no-cache-dir gradio
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python", "app.py"]