Skip to content

Commit 57bca0a

Browse files
karalabefjl
authored andcommitted
containers/docker: bump legacy images to 1.8 branch (#16084)
1 parent a5c0bbb commit 57bca0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

containers/docker/master-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:3.7
22

33
RUN \
44
apk add --update go git make gcc musl-dev linux-headers ca-certificates && \
5-
git clone --depth 1 --branch release/1.7 https://github.com/ethereum/go-ethereum && \
5+
git clone --depth 1 --branch release/1.8 https://github.com/ethereum/go-ethereum && \
66
(cd go-ethereum && make geth) && \
77
cp go-ethereum/build/bin/geth /geth && \
88
apk del go git make gcc musl-dev linux-headers && \

containers/docker/master-ubuntu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV PATH=/usr/lib/go-1.9/bin:$PATH
55
RUN \
66
apt-get update && apt-get upgrade -q -y && \
77
apt-get install -y --no-install-recommends golang-1.9 git make gcc libc-dev ca-certificates && \
8-
git clone --depth 1 --branch release/1.7 https://github.com/ethereum/go-ethereum && \
8+
git clone --depth 1 --branch release/1.8 https://github.com/ethereum/go-ethereum && \
99
(cd go-ethereum && make geth) && \
1010
cp go-ethereum/build/bin/geth /geth && \
1111
apt-get remove -y golang-1.9 git make gcc libc-dev && apt autoremove -y && apt-get clean && \

0 commit comments

Comments
 (0)