diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-02-13 16:37:34 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:22 +0800 |
commit | edb1273cb08d56df41b30b1f2f2e113f9b4296e4 (patch) | |
tree | 301b48027bdc8b3271a36063eca389777fca809a | |
parent | 9babc19339f86e10cc6b2ad2a7550cbdc91b7c0b (diff) | |
download | go-tangerine-edb1273cb08d56df41b30b1f2f2e113f9b4296e4.tar.gz go-tangerine-edb1273cb08d56df41b30b1f2f2e113f9b4296e4.tar.zst go-tangerine-edb1273cb08d56df41b30b1f2f2e113f9b4296e4.zip |
misc: Update Dockerfile
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 43dea93ad..9b5615fcb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build Geth in a stock Go builder container -FROM golang:1.11-alpine as builder +FROM golang:1.11-alpine3.9 as builder RUN apk add --no-cache make gcc musl-dev linux-headers g++ gmp-dev openssl-dev pkgconfig @@ -7,7 +7,7 @@ ADD . /dexon RUN cd /dexon && make clean && DOCKER=alpine make gdex # Pull Geth into a second stage deploy alpine container -FROM alpine:latest +FROM alpine:3.9 RUN apk add --no-cache ca-certificates libstdc++ curl gmp openssl COPY --from=builder /dexon/build/bin/gdex /usr/local/bin/ |