diff options
author | s60912frank <s60912frank@gmail.com> | 2018-12-06 15:55:16 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:19 +0800 |
commit | b62a86c46af1590fb56c593bd9c8835f5c16e16b (patch) | |
tree | e23841b3188ba74921fddca4e797b2bf21975047 /Dockerfile | |
parent | 421dd70b4c9e5c468646d27a62749ef9e6a8ebc7 (diff) | |
download | go-tangerine-b62a86c46af1590fb56c593bd9c8835f5c16e16b.tar go-tangerine-b62a86c46af1590fb56c593bd9c8835f5c16e16b.tar.gz go-tangerine-b62a86c46af1590fb56c593bd9c8835f5c16e16b.tar.bz2 go-tangerine-b62a86c46af1590fb56c593bd9c8835f5c16e16b.tar.lz go-tangerine-b62a86c46af1590fb56c593bd9c8835f5c16e16b.tar.xz go-tangerine-b62a86c46af1590fb56c593bd9c8835f5c16e16b.tar.zst go-tangerine-b62a86c46af1590fb56c593bd9c8835f5c16e16b.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-- | Dockerfile | 4 |
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"] |