1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/gradio/Dockerfile

14 lines
160 B
Docker
Raw Normal View History

2024-04-12 03:51:53 +00:00
#
# Dockerfile for gradio
#
FROM python:3.12-slim
ENV GRADIO_SERVER_NAME="0.0.0.0"
RUN pip install --no-cache-dir gradio
EXPOSE 7860
ENTRYPOINT ["python"]