Merge pull request #2862 from yep/faster-git-clone

containers/docker: use shallow clone of single branch
This commit is contained in:
Péter Szilágyi 2016-07-26 09:51:47 +03:00 committed by GitHub
commit a724952f75
2 changed files with 10 additions and 11 deletions

View File

@ -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 && \

View File

@ -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 && \