Dockerfile: Create dockerfile for 1.4 release branch (#3321)

This commit is contained in:
Nick Johnson
2016-11-22 12:07:04 +00:00
committed by Felix Lange
parent 81d9d7d385
commit 07d6515b16

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM alpine:3.3
ADD . /go-ethereum
RUN \
apk add --update git go make gcc musl-dev && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \
apk del git go make gcc musl-dev && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
EXPOSE 8545
EXPOSE 30303
ENTRYPOINT ["/geth"]