You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
406 B
18 lines
406 B
FROM runpod/stable-diffusion:web-automatic-1.5.16
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
ENV PATH="${PATH}:/workspace/stable-diffusion-webui/venv/bin"
|
|
|
|
WORKDIR /
|
|
|
|
RUN rm /workspace/v1-5-pruned-emaonly.ckpt
|
|
RUN wget -O model.safetensors https://civitai.com/api/download/models/5616
|
|
RUN pip install -U xformers
|
|
RUN pip install runpod
|
|
|
|
ADD handler.py .
|
|
ADD start.sh /start.sh
|
|
RUN chmod +x /start.sh
|
|
|
|
CMD [ "/start.sh" ]
|
|
|