containers/docker: use shallow clone of single branch

release/1.5
yep 8 years ago
parent 3e3a79ea13
commit 4c1abcb0ce
  1. 3
      containers/docker/develop-alpine/Dockerfile
  2. 2
      containers/docker/master-alpine/Dockerfile

@ -2,8 +2,7 @@ FROM alpine:3.4
RUN \
apk add --update go git make gcc musl-dev && \
git clone https://github.com/ethereum/go-ethereum && \
(cd go-ethereum && git checkout develop) && \
git clone --depth 1 --branch develop https://github.com/ethereum/go-ethereum && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \
apk del go git make gcc musl-dev && \

@ -2,7 +2,7 @@ FROM alpine:3.4
RUN \
apk add --update go git make gcc musl-dev && \
git clone https://github.com/ethereum/go-ethereum && \
git clone --depth 1 https://github.com/ethereum/go-ethereum && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \
apk del go git make gcc musl-dev && \

Loading…
Cancel
Save