1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/gradio/Dockerfile

14 lines
160 B
Docker
Raw Normal View History

2024-04-12 05:51:53 +02: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"]