aboutsummaryrefslogtreecommitdiffstats
path: root/containers
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-01-23 17:46:15 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-01-23 17:46:15 +0800
commitc04598f2b09ab66204b30b1c9242b4dfadcd6bdd (patch)
tree12352d475532e81a2b3c763895c222a5d0b78bde /containers
parent96778a1c216f7d0d987dd8ea6474b2d3eebe9cfc (diff)
downloadgo-tangerine-c04598f2b09ab66204b30b1c9242b4dfadcd6bdd.tar
go-tangerine-c04598f2b09ab66204b30b1c9242b4dfadcd6bdd.tar.gz
go-tangerine-c04598f2b09ab66204b30b1c9242b4dfadcd6bdd.tar.bz2
go-tangerine-c04598f2b09ab66204b30b1c9242b4dfadcd6bdd.tar.lz
go-tangerine-c04598f2b09ab66204b30b1c9242b4dfadcd6bdd.tar.xz
go-tangerine-c04598f2b09ab66204b30b1c9242b4dfadcd6bdd.tar.zst
go-tangerine-c04598f2b09ab66204b30b1c9242b4dfadcd6bdd.zip
containers/docker: update to alpine 3.5, add CA certificates
Diffstat (limited to 'containers')
-rw-r--r--containers/docker/develop-alpine/Dockerfile4
-rw-r--r--containers/docker/master-alpine/Dockerfile4
2 files changed, 4 insertions, 4 deletions
diff --git a/containers/docker/develop-alpine/Dockerfile b/containers/docker/develop-alpine/Dockerfile
index 3393c4337..a8d85bc63 100644
--- a/containers/docker/develop-alpine/Dockerfile
+++ b/containers/docker/develop-alpine/Dockerfile
@@ -1,7 +1,7 @@
-FROM alpine:3.4
+FROM alpine:3.5
RUN \
- apk add --update go git make gcc musl-dev && \
+ apk add --update go git make gcc musl-dev ca-certificates && \
git clone --depth 1 https://github.com/ethereum/go-ethereum && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \
diff --git a/containers/docker/master-alpine/Dockerfile b/containers/docker/master-alpine/Dockerfile
index 5131c473a..0db583a43 100644
--- a/containers/docker/master-alpine/Dockerfile
+++ b/containers/docker/master-alpine/Dockerfile
@@ -1,7 +1,7 @@
-FROM alpine:3.4
+FROM alpine:3.5
RUN \
- apk add --update go git make gcc musl-dev && \
+ apk add --update go git make gcc musl-dev ca-certificates && \
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 && \