mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 00:39:26 +00:00
Dockerfile: Create dockerfile for 1.4 release branch (#3321)
This commit is contained in:
parent
81d9d7d385
commit
07d6515b16
1 changed files with 14 additions and 0 deletions
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
||||||
Loading…
Reference in a new issue