diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-04-13 00:26:06 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-13 00:26:06 +0800 |
commit | ef66598ba379d675658d3b09eb0c7317ae900d6a (patch) | |
tree | 483628cc5a4a2613e0d892044f3efcb8aeb36f29 | |
parent | 7e3c194368f661e621d75dabfb562ace869466b4 (diff) | |
download | dexon-ef66598ba379d675658d3b09eb0c7317ae900d6a.tar.gz dexon-ef66598ba379d675658d3b09eb0c7317ae900d6a.tar.zst dexon-ef66598ba379d675658d3b09eb0c7317ae900d6a.zip |
fixup! build: disable static built by default (#359)
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 74ecf43d8..161d441d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN cd /dexon && build/env.sh go build -o build/bin/bootnode ./cmd/bootnode # Pull Gdex into a second stage deploy alpine container FROM alpine:latest -RUN apk add --no-cache ca-certificates curl gmp +RUN apk add --no-cache ca-certificates curl libstdc++ gmp COPY --from=builder /dexon/build/bin/gdex /usr/local/bin/ COPY --from=builder /dexon/build/bin/bootnode /usr/local/bin/ |