Spaces:
Runtime error
Runtime error
FROM python:3.8 | |
COPY requirements.txt requirements.txt | |
RUN pip3 install -r requirements.txt | |
ENV TRANSFORMERS_CACHE /var/cache/transformers | |
RUN transformers-cli download CompVis/stable-diffusion-v1-4 | |
WORKDIR $HOME/app | |
COPY . $HOME/app | |
# cache model | |
RUN python3 warm_up.py | |
CMD ["sh", "-c", "python3 main.py"] |