testtinterspace / Dockerfile
dedlepexa's picture
Create Dockerfile
1961715 verified
Raw
History Blame Contribute Delete
160 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"]