aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile.alltools
diff options
context:
space:
mode:
authorSamuel Marks <samuelmarks@gmail.com>2019-02-26 12:12:13 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-15 22:09:55 +0800
commit06de3ff42efa5e53e56284d08928ee598cf40751 (patch)
treec7cf316c1930eb6456fbaaeb19e699d7c3b9b20e /Dockerfile.alltools
parent1a2059fc4e00a34fb555dff1528d6a1e88e7a1ec (diff)
downloadgo-tangerine-06de3ff42efa5e53e56284d08928ee598cf40751.tar.gz
go-tangerine-06de3ff42efa5e53e56284d08928ee598cf40751.tar.zst
go-tangerine-06de3ff42efa5e53e56284d08928ee598cf40751.zip
travis, appveyor, Dockerfile: upgrade to Go 1.12
Include serveral DEXON specific fixes.
Diffstat (limited to 'Dockerfile.alltools')
-rw-r--r--Dockerfile.alltools6
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/