Higgsfiled-ai / Dockerfile
Snapspark's picture
Update Dockerfile
c748984 verified
Raw
History Blame Contribute Delete
318 Bytes
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"]