CommaGenerateImages / Dockerfile
Axel-Student
init ai model with generating imgs
50bfe7a
raw
history blame
214 Bytes
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"]