aboutsummaryrefslogtreecommitdiffstats
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-04-09 13:50:03 +0800
commit58f99e823ea3cf93853b6a68392e19209ae3203a (patch)
treecfa601e1cc41e74731e810978564a9cc2036b30e
parent1b0e4000ca3ab09151bc65decf9f5d144a2475a2 (diff)
downloaddexon-58f99e823ea3cf93853b6a68392e19209ae3203a.tar
dexon-58f99e823ea3cf93853b6a68392e19209ae3203a.tar.gz
dexon-58f99e823ea3cf93853b6a68392e19209ae3203a.tar.bz2
dexon-58f99e823ea3cf93853b6a68392e19209ae3203a.tar.lz
dexon-58f99e823ea3cf93853b6a68392e19209ae3203a.tar.xz
dexon-58f99e823ea3cf93853b6a68392e19209ae3203a.tar.zst
dexon-58f99e823ea3cf93853b6a68392e19209ae3203a.zip
Dockerfile.alltools: update Dockerfile for building tools (#234)
-rw-r--r--Dockerfile4
-rw-r--r--Dockerfile.alltools16
2 files changed, 10 insertions, 10 deletions
diff --git a/Dockerfile b/Dockerfile
index 9b5615fcb..d71c678a2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-# Build Geth in a stock Go builder container
+# 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 g++ gmp-dev openssl-dev pkgconfig
@@ -6,7 +6,7 @@ RUN apk add --no-cache make gcc musl-dev linux-headers g++ gmp-dev openssl-dev p
ADD . /dexon
RUN cd /dexon && make clean && DOCKER=alpine make gdex
-# Pull Geth into a second stage deploy alpine container
+# Pull Gdex into a second stage deploy alpine container
FROM alpine:3.9
RUN apk add --no-cache ca-certificates libstdc++ curl gmp openssl
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