mirror of
https://github.com/sd-webui/stable-diffusion-webui.git
synced 2025-01-05 20:28:01 +03:00
Added source to Docker image (#1329)
# Description This will allow the image to be used outside of the repo (such as in a service like runpod, or by a novice user who doesn't want to pull the git repo and instead use `docker run ...`) once we start pushing the images to Docker Hub. Closes: Nothing, yet. This is a step in the direction of `#installation-packing:Docker` in Discord. # Checklist: - [x] I have changed the base branch to `dev` - [x] I have performed a self-review of my own code - [x] I have commented my code in hard-to-understand areas - [x] I have made corresponding changes to the documentation
This commit is contained in:
parent
8f2ed2f350
commit
f4676517d8
@ -1,4 +1,4 @@
|
|||||||
models/
|
models/custom/
|
||||||
outputs/
|
outputs/
|
||||||
src/
|
src/
|
||||||
gfpgan/
|
gfpgan/
|
||||||
|
@ -41,6 +41,14 @@ COPY /data/DejaVuSans.ttf /usr/share/fonts/truetype/
|
|||||||
|
|
||||||
ENV PYTHONPATH=/sd
|
ENV PYTHONPATH=/sd
|
||||||
|
|
||||||
|
COPY ./models /sd/models
|
||||||
|
COPY ./configs /sd/configs
|
||||||
|
COPY ./frontend /sd/frontend
|
||||||
|
COPY ./ldm /sd/ldm
|
||||||
|
# COPY ./gfpgan/ /sd/
|
||||||
|
COPY ./optimizedSD /sd/optimizedSD
|
||||||
|
COPY ./scripts /sd/scripts
|
||||||
|
|
||||||
EXPOSE 7860 8501
|
EXPOSE 7860 8501
|
||||||
|
|
||||||
COPY ./entrypoint.sh /sd/
|
COPY ./entrypoint.sh /sd/
|
||||||
|
Loading…
Reference in New Issue
Block a user