From 5db16de80ca5962f9842a0ee7357d68dc934b7ad Mon Sep 17 00:00:00 2001 From: zelig Date: Fri, 29 Jul 2016 04:50:24 +0200 Subject: [PATCH] containers/docker: source for swarm updated --- containers/docker/swarm-alpine/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/docker/swarm-alpine/Dockerfile b/containers/docker/swarm-alpine/Dockerfile index 19d946700d..2e76e6354e 100644 --- a/containers/docker/swarm-alpine/Dockerfile +++ b/containers/docker/swarm-alpine/Dockerfile @@ -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 && \