File size: 142 Bytes
cce2d67
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM python:3.10-slim

RUN pip install --no-cache-dir diffusers[torch] transformers accelerate gradio

COPY app.py .

CMD ["python", "app.py"]