aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authors60912frank <s60912frank@gmail.com>2018-12-06 15:55:16 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:54 +0800
commit5f81fe304e5880f3c9c697ac6fe6691720af67f9 (patch)
tree7799857bf4543bee00a2ad5143f8dcfa2cdf3cf0 /Dockerfile
parent3975b325ecd8d489f6a2c8cd80d4a2d460f49286 (diff)
downloaddexon-5f81fe304e5880f3c9c697ac6fe6691720af67f9.tar
dexon-5f81fe304e5880f3c9c697ac6fe6691720af67f9.tar.gz
dexon-5f81fe304e5880f3c9c697ac6fe6691720af67f9.tar.bz2
dexon-5f81fe304e5880f3c9c697ac6fe6691720af67f9.tar.lz
dexon-5f81fe304e5880f3c9c697ac6fe6691720af67f9.tar.xz
dexon-5f81fe304e5880f3c9c697ac6fe6691720af67f9.tar.zst
dexon-5f81fe304e5880f3c9c697ac6fe6691720af67f9.zip
Dockerfile: fix path and dependency (#80)
* Dockerfile: fix path and dependency * Update Dockerfile Co-Authored-By: s60912frank <s60912frank@gmail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 04648a8f2..7d8668636 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -9,8 +9,8 @@ RUN cd /dexon && DOCKER=alpine make gdex
# Pull Geth into a second stage deploy alpine container
FROM alpine:latest
-RUN apk add --no-cache ca-certificates
-COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
+RUN apk add --no-cache ca-certificates libstdc++
+COPY --from=builder /dexon/build/bin/gdex /usr/local/bin/
EXPOSE 8545 8546 30303 30303/udp
ENTRYPOINT ["gdex"]