Skip to content

Commit

Permalink
containers/docker/master-alpine: drop gmp dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Jul 4, 2016
1 parent 7e6ede1 commit 092fcaf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions containers/docker/master-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM alpine:3.3

RUN \
apk add --update go git make gcc musl-dev gmp-dev gmp && \
git clone 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 gmp-dev && \
apk add --update go git make gcc musl-dev && \
git clone 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 && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/*

EXPOSE 8545
Expand Down

0 comments on commit 092fcaf

Please sign in to comment.