File size: 214 Bytes
50bfe7a
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.10

WORKDIR /app

RUN pip install --no-cache-dir torch torchvision torchaudio diffusers gradio
RUN pip install --no-cache-dir black-forest-labs-flux
COPY . /app

EXPOSE 7860

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