containers/docker: source for swarm updated

This commit is contained in:
zelig 2016-07-29 04:50:24 +02:00
parent 71807f3cc5
commit 5db16de80c

View file

@ -8,8 +8,8 @@ FROM alpine:3.3
# Build go-ethereum on the fly and delete all build tools afterwards
RUN \
apk add --update go git make gcc musl-dev && \
git clone https://github.com/ethersphere/go-ethereum && \
(cd go-ethereum && git checkout s/sworm-rc3-update) && \
git clone https://github.com/ethereum/go-ethereum && \
(cd go-ethereum && git checkout swarm) && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \
apk del go git make gcc musl-dev && \