Skip to content

Commit fb5407a

Browse files
authored
Smaller git clones (#179)
Closes #135
1 parent 5b4acd6 commit fb5407a

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ services:
3636
<<: *base_service
3737
profiles: ["auto"]
3838
build: ./services/AUTOMATIC1111
39-
image: sd-auto:3
39+
image: sd-auto:4
4040
environment:
4141
- CLI_ARGS=--allow-code --medvram --xformers
4242

services/AUTOMATIC1111/Dockerfile

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,25 @@ FROM alpine/git:2.36.2 as download
44

55
SHELL ["/bin/sh", "-ceuxo", "pipefail"]
66

7-
RUN git clone https://github.com/CompVis/stable-diffusion.git repositories/stable-diffusion && cd repositories/stable-diffusion && git reset --hard 69ae4b35e0a0f6ee1af8bb9a5d0016ccb27e36dc
8-
9-
RUN git clone https://github.com/sczhou/CodeFormer.git repositories/CodeFormer && cd repositories/CodeFormer && git reset --hard c5b4593074ba6214284d6acd5f1719b6c5d739af
10-
RUN git clone https://github.com/salesforce/BLIP.git repositories/BLIP && cd repositories/BLIP && git reset --hard 48211a1594f1321b00f14c9f7a5b4813144b2fb9
11-
127
RUN <<EOF
13-
# because taming-transformers is huge
14-
git config --global http.postBuffer 1048576000
15-
git clone https://github.com/CompVis/taming-transformers.git repositories/taming-transformers
16-
cd repositories/taming-transformers
17-
git reset --hard 24268930bf1dce879235a7fddd0b2355b84d7ea6
18-
rm -rf data assets
8+
cat <<'EOE' > /clone.sh
9+
mkdir -p repositories/"$1" && cd repositories/"$1" && git init && git remote add origin "$2" && git fetch origin "$3" --depth=1 && git reset --hard "$3" && rm -rf .git
10+
EOE
1911
EOF
2012

21-
RUN git clone https://github.com/crowsonkb/k-diffusion.git repositories/k-diffusion && cd repositories/k-diffusion && git reset --hard f4e99857772fc3a126ba886aadf795a332774878
13+
RUN . /clone.sh taming-transformers https://github.com/CompVis/taming-transformers.git 24268930bf1dce879235a7fddd0b2355b84d7ea6 \
14+
&& rm -rf data assets **/*.ipynb
15+
16+
RUN . /clone.sh stable-diffusion https://github.com/CompVis/stable-diffusion.git 69ae4b35e0a0f6ee1af8bb9a5d0016ccb27e36dc \
17+
&& rm -rf assets data/**/*.png data/**/*.jpg data/**/*.gif
18+
19+
RUN . /clone.sh CodeFormer https://github.com/sczhou/CodeFormer.git c5b4593074ba6214284d6acd5f1719b6c5d739af \
20+
&& rm -rf assets inputs
21+
22+
RUN . /clone.sh BLIP https://github.com/salesforce/BLIP.git 48211a1594f1321b00f14c9f7a5b4813144b2fb9
23+
RUN . /clone.sh k-diffusion https://github.com/crowsonkb/k-diffusion.git f4e99857772fc3a126ba886aadf795a332774878
24+
RUN . /clone.sh clip-interrogator https://github.com/pharmapsychotic/clip-interrogator 2486589f24165c8e3b303f84e9dbbea318df83e8
2225

23-
RUN git clone https://github.com/pharmapsychotic/clip-interrogator repositories/clip-interrogator && cd repositories/clip-interrogator && git reset --hard 2486589f24165c8e3b303f84e9dbbea318df83e8
2426

2527
FROM alpine:3 as xformers
2628
RUN apk add aria2

0 commit comments

Comments
 (0)