From 504815091fc8339cd06003e6394408a7a5738ebd Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Tue, 15 Nov 2016 17:57:56 +0000 Subject: containers/docker: Fix dockerfiles for new branch layout; add dockerfile in root --- containers/docker/develop-alpine/Dockerfile | 2 +- containers/docker/master-alpine/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'containers/docker') diff --git a/containers/docker/develop-alpine/Dockerfile b/containers/docker/develop-alpine/Dockerfile index f3247d178..3393c4337 100644 --- a/containers/docker/develop-alpine/Dockerfile +++ b/containers/docker/develop-alpine/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.4 RUN \ apk add --update go git make gcc musl-dev && \ - git clone --depth 1 --branch develop 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 && \ diff --git a/containers/docker/master-alpine/Dockerfile b/containers/docker/master-alpine/Dockerfile index 3393c4337..5131c473a 100644 --- a/containers/docker/master-alpine/Dockerfile +++ b/containers/docker/master-alpine/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.4 RUN \ apk add --update go git make gcc musl-dev && \ - git clone --depth 1 https://github.com/ethereum/go-ethereum && \ + git clone --depth 1 --branch release/1.5 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 && \ -- cgit v1.2.3