aboutsummaryrefslogtreecommitdiffstats
path: root/containers
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-01-31 22:19:55 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-01-31 22:19:55 +0800
commit0781fd7aa077d73156b6a807b40455ec5dfa5ac8 (patch)
treeb0bfd626e3d6be509d2538d949463003cb748fe8 /containers
parentaed25640a42bfafd33abd0fab1e9b021bc9c32a0 (diff)
downloadgo-tangerine-0781fd7aa077d73156b6a807b40455ec5dfa5ac8.tar
go-tangerine-0781fd7aa077d73156b6a807b40455ec5dfa5ac8.tar.gz
go-tangerine-0781fd7aa077d73156b6a807b40455ec5dfa5ac8.tar.bz2
go-tangerine-0781fd7aa077d73156b6a807b40455ec5dfa5ac8.tar.lz
go-tangerine-0781fd7aa077d73156b6a807b40455ec5dfa5ac8.tar.xz
go-tangerine-0781fd7aa077d73156b6a807b40455ec5dfa5ac8.tar.zst
go-tangerine-0781fd7aa077d73156b6a807b40455ec5dfa5ac8.zip
containers/docker/master-alpine: add the legacy gmp lib back for now
Diffstat (limited to 'containers')
-rw-r--r--containers/docker/master-alpine/Dockerfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/containers/docker/master-alpine/Dockerfile b/containers/docker/master-alpine/Dockerfile
index 7a4c535fd..11d4159a3 100644
--- a/containers/docker/master-alpine/Dockerfile
+++ b/containers/docker/master-alpine/Dockerfile
@@ -1,11 +1,11 @@
FROM alpine:3.3
RUN \
- apk add --update go git make gcc musl-dev gmp-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 gmp-dev && \
+ 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 && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
EXPOSE 8545