test-13406 / Dockerfile
hysts's picture
hysts HF Staff
initial commit
e7d8d81
Raw
History Blame Contribute Delete
209 Bytes
FROM python:3.12-slim
WORKDIR /app
COPY gradio-6.16.0-py3-none-any.whl /app/
RUN pip install --no-cache-dir /app/gradio-6.16.0-py3-none-any.whl
COPY app.py /app/app.py
EXPOSE 7860
CMD ["python", "app.py"]