mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
14 lines
160 B
Docker
14 lines
160 B
Docker
|
#
|
||
|
# 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"]
|