aboutsummaryrefslogtreecommitdiffstats
path: root/containers/docker/master-alpine/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'containers/docker/master-alpine/Dockerfile')
-rw-r--r--containers/docker/master-alpine/Dockerfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/containers/docker/master-alpine/Dockerfile b/containers/docker/master-alpine/Dockerfile
new file mode 100644
index 000000000..7a4c535fd
--- /dev/null
+++ b/containers/docker/master-alpine/Dockerfile
@@ -0,0 +1,14 @@
+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 && \
+ rm -rf /go-ethereum && rm -rf /var/cache/apk/*
+
+EXPOSE 8545
+EXPOSE 30303
+
+ENTRYPOINT ["/geth"]