aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGeorge Angel <george-angel@users.noreply.github.com>2017-08-21 18:26:42 +0800
committerFelix Lange <fjl@users.noreply.github.com>2017-08-21 18:26:42 +0800
commit58f7f977e7998761a37ec5075ffa51faf36e5399 (patch)
tree468e61e56e5a7b3f1a553f18f89ede640f0396cc /Dockerfile
parentafdfdebd87535032c7796bfcca0ce158dea7e32c (diff)
downloaddexon-58f7f977e7998761a37ec5075ffa51faf36e5399.tar
dexon-58f7f977e7998761a37ec5075ffa51faf36e5399.tar.gz
dexon-58f7f977e7998761a37ec5075ffa51faf36e5399.tar.bz2
dexon-58f7f977e7998761a37ec5075ffa51faf36e5399.tar.lz
dexon-58f7f977e7998761a37ec5075ffa51faf36e5399.tar.xz
dexon-58f7f977e7998761a37ec5075ffa51faf36e5399.tar.zst
dexon-58f7f977e7998761a37ec5075ffa51faf36e5399.zip
Dockerfile: use alpine:3.6, clean up apk incovation (#15006)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile16
1 files changed, 7 insertions, 9 deletions
diff --git a/Dockerfile b/Dockerfile
index 6bf13dc31..947f045e5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,15 +1,13 @@
-FROM alpine:3.5
+FROM alpine:3.6
ADD . /go-ethereum
RUN \
- apk add --update git go make gcc musl-dev linux-headers && \
- (cd go-ethereum && make geth) && \
- cp go-ethereum/build/bin/geth /usr/local/bin/ && \
- apk del git go make gcc musl-dev linux-headers && \
- rm -rf /go-ethereum && rm -rf /var/cache/apk/*
+ apk add --no-cache git go make gcc musl-dev linux-headers && \
+ (cd go-ethereum && make geth) && \
+ cp go-ethereum/build/bin/geth /usr/local/bin/ && \
+ apk del git go make gcc musl-dev linux-headers && \
+ rm -rf /go-ethereum
-EXPOSE 8545
-EXPOSE 30303
-EXPOSE 30303/udp
+EXPOSE 8545 30303 30303/udp
ENTRYPOINT ["geth"]