diff options
author | Samuel Marks <samuelmarks@gmail.com> | 2019-02-26 12:12:13 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:59 +0800 |
commit | 1b4f1f2804f4975f58248d8933e5f74a7f827e0d (patch) | |
tree | e5163bb4e19d244fa658208d81e515560bc7f876 /Dockerfile.alltools | |
parent | 47951b804128afa41197e9bdea7f0b6f24763f22 (diff) | |
download | dexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.tar.gz dexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.tar.zst dexon-1b4f1f2804f4975f58248d8933e5f74a7f827e0d.zip |
travis, appveyor, Dockerfile: upgrade to Go 1.12
Include serveral DEXON specific fixes.
Diffstat (limited to 'Dockerfile.alltools')
-rw-r--r-- | Dockerfile.alltools | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile.alltools b/Dockerfile.alltools index e8c022fd2..9c85a8802 100644 --- a/Dockerfile.alltools +++ b/Dockerfile.alltools @@ -1,5 +1,5 @@ -# Build Gdex in a stock Go builder container -FROM golang:1.11-alpine3.9 as builder +# Build Geth in a stock Go builder container +FROM golang:1.12-alpine 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 all # Pull all binaries into a second stage deploy alpine container -FROM alpine:3.9 +FROM alpine:latest RUN apk add --no-cache ca-certificates libstdc++ gmp openssl COPY --from=builder /dexon/build/bin/* /usr/local/bin/ |