From f68275ac8bf5b675f1fb01659c9e6548c099a513 Mon Sep 17 00:00:00 2001 From: s60912frank Date: Thu, 6 Dec 2018 15:55:16 +0800 Subject: Dockerfile: fix path and dependency (#80) * Dockerfile: fix path and dependency * Update Dockerfile Co-Authored-By: s60912frank --- Dockerfile | 4 ++-- 1 file 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"] -- cgit v1.2.3