aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile.alltools
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2019-03-09 09:22:04 +0800
committerWei-Ning Huang <w@dexon.org>2019-03-12 12:19:09 +0800
commit00abada15b3fe43cfc7394555558a4e2e6799131 (patch)
tree240baac3154c79cf108221037a0a2bd867175b6e /Dockerfile.alltools
parentc74171fec6b07622e6812d3998a98cb65dd4fcf3 (diff)
downloaddexon-00abada15b3fe43cfc7394555558a4e2e6799131.tar.gz
dexon-00abada15b3fe43cfc7394555558a4e2e6799131.tar.zst
dexon-00abada15b3fe43cfc7394555558a4e2e6799131.zip
Dockerfile.alltools: update Dockerfile for building tools (#234)
Diffstat (limited to 'Dockerfile.alltools')
-rw-r--r--Dockerfile.alltools16
1 files changed, 8 insertions, 8 deletions
diff --git a/Dockerfile.alltools b/Dockerfile.alltools
index e984a1b09..e8c022fd2 100644
--- a/Dockerfile.alltools
+++ b/Dockerfile.alltools
@@ -1,15 +1,15 @@
-# Build Geth in a stock Go builder container
-FROM golang:1.11-alpine as builder
+# Build Gdex in a stock Go builder container
+FROM golang:1.11-alpine3.9 as builder
-RUN apk add --no-cache make gcc musl-dev linux-headers
+RUN apk add --no-cache make gcc musl-dev linux-headers g++ gmp-dev openssl-dev pkgconfig
-ADD . /go-ethereum
-RUN cd /go-ethereum && make all
+ADD . /dexon
+RUN cd /dexon && make clean && DOCKER=alpine make all
# Pull all binaries into a second stage deploy alpine container
-FROM alpine:latest
+FROM alpine:3.9
-RUN apk add --no-cache ca-certificates
-COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/
+RUN apk add --no-cache ca-certificates libstdc++ gmp openssl
+COPY --from=builder /dexon/build/bin/* /usr/local/bin/
EXPOSE 8545 8546 30303 30303/udp