diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-04-12 18:14:43 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-15 22:09:55 +0800 |
commit | 4ad9119a92ea63b0568f1100729a8cf377adfe2a (patch) | |
tree | 93578b9ee96c4ca3f68e639ef9321dd1e334e946 /Dockerfile | |
parent | d5daf97dba3156ef9adbf129a9d1e276f80d1095 (diff) | |
download | go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.gz go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.bz2 go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.lz go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.xz go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.tar.zst go-tangerine-4ad9119a92ea63b0568f1100729a8cf377adfe2a.zip |
build: disable static built by default (#359)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 89bf55ecc..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 +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/ |