Commit 4c1abcb0 authored by yep's avatar yep

containers/docker: use shallow clone of single branch

parent 3e3a79ea
...@@ -2,8 +2,7 @@ FROM alpine:3.4 ...@@ -2,8 +2,7 @@ FROM alpine:3.4
RUN \ RUN \
apk add --update go git make gcc musl-dev && \ apk add --update go git make gcc musl-dev && \
git clone https://github.com/ethereum/go-ethereum && \ git clone --depth 1 --branch develop https://github.com/ethereum/go-ethereum && \
(cd go-ethereum && git checkout develop) && \
(cd go-ethereum && make geth) && \ (cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \ cp go-ethereum/build/bin/geth /geth && \
apk del go git make gcc musl-dev && \ apk del go git make gcc musl-dev && \
......
...@@ -2,7 +2,7 @@ FROM alpine:3.4 ...@@ -2,7 +2,7 @@ FROM alpine:3.4
RUN \ RUN \
apk add --update go git make gcc musl-dev && \ 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) && \ (cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \ cp go-ethereum/build/bin/geth /geth && \
apk del go git make gcc musl-dev && \ apk del go git make gcc musl-dev && \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment