add chillout template docker

This commit is contained in:
hl
2023-02-28 00:13:15 -08:00
parent 31ba11e068
commit 9c11e2fc02
7 changed files with 119 additions and 3 deletions
+21
View File
@@ -0,0 +1,21 @@
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
ADD ./models/checkpoint/chilloutmix.safetensors /workspace/stable-diffusion-webui/models/Stable-diffusion/chilloutmix.safetensors
ADD ./models/Lora/ /workspace/stable-diffusion-webui/models/Lora/
ADD relauncher.py .
ADD webui-user.sh .
ADD start.sh /start.sh
RUN chmod a+x /start.sh
SHELL ["/bin/bash", "--login", "-c"]
CMD [ "/start.sh" ]