From 5f81fe304e5880f3c9c697ac6fe6691720af67f9 Mon Sep 17 00:00:00 2001 From: s60912frank <s60912frank@gmail.com> 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 <s60912frank@gmail.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') 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