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-03-12 12:19:09 +0800
commitf68275ac8bf5b675f1fb01659c9e6548c099a513 (patch)
treebe050b6663bb7a109c874705a815fced2c1b8b08 /Dockerfile
parent4b1789f7e96c19a516c1068a9d1b019262cb5741 (diff)
downloaddexon-f68275ac8bf5b675f1fb01659c9e6548c099a513.tar.gz
dexon-f68275ac8bf5b675f1fb01659c9e6548c099a513.tar.zst
dexon-f68275ac8bf5b675f1fb01659c9e6548c099a513.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"]