Skip to content

Commit

Permalink
containers/docker: update to alpine 3.5, add CA certificates
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Jan 23, 2017
1 parent 96778a1 commit c04598f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions containers/docker/develop-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
4 changes: 2 additions & 2 deletions containers/docker/master-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down

0 comments on commit c04598f

Please sign in to comment.