image-gen / Dockerfile.gradio
BeveledCube's picture
Trying sum
3b3a783
raw
history blame
No virus
189 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y git
COPY . /app
RUN pip install --no-cache-dir gradio Pillow
EXPOSE 80
CMD ["python", "tld/gradio_app.py"]