Advertisement
kopyl

Untitled

Apr 3rd, 2023
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. FROM runpod/stable-diffusion:web-automatic-base-4.0.0 AS build
  2.  
  3. SHELL ["/bin/bash", "-c"]
  4.  
  5. ENV PATH="${PATH}:/workspace/stable-diffusion-webui/venv/bin"
  6. ENV PYTHONUNBUFFERED=1
  7.  
  8. RUN pip install -U xformers
  9.  
  10. WORKDIR /
  11.  
  12. COPY model.ckpt /workspace/stable-diffusion-webui/models/Stable-diffusion/model.ckpt
  13. COPY new15.safetensors /workspace/stable-diffusion-webui/models/Lora/new15.safetensors
  14.  
  15. FROM build AS with_logo
  16.  
  17. ADD custom-start.sh /workspace/stable-diffusion-webui/custom-start.sh
  18. RUN chmod +x /workspace/stable-diffusion-webui/custom-start.sh
  19.  
  20. WORKDIR /workspace/stable-diffusion-webui
  21.  
  22. CMD [ "sleep", "infinity" ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement