Spaces:
Running
Running
| FROM python:3.10 | |
| RUN pip install flask | |
| RUN git clone https://github.com/Higgsfield-ai/higgsfield /app/higgsfield | |
| RUN pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu | |
| RUN pip install diffusers accelerate transformers | |
| COPY app.py /app/app.py | |
| WORKDIR /app | |
| CMD ["python", "app.py"] |