diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-04-11 18:32:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-11 18:32:33 +0800 |
commit | b7ca8e6c9bafda89c91aa3d35a8feb3f9f6bab25 (patch) | |
tree | 59d29630eba2f02e452960a70b7bea7e6d32e592 /Dockerfile.alltools | |
parent | 2922460b04b4378ce202e5fdb92ff6ad9607ab89 (diff) | |
download | dexon-b7ca8e6c9bafda89c91aa3d35a8feb3f9f6bab25.tar.gz dexon-b7ca8e6c9bafda89c91aa3d35a8feb3f9f6bab25.tar.zst dexon-b7ca8e6c9bafda89c91aa3d35a8feb3f9f6bab25.zip |
vendor: use BLS-12_384 curve and update dependencies (#356)
Diffstat (limited to 'Dockerfile.alltools')
-rw-r--r-- | Dockerfile.alltools | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile.alltools b/Dockerfile.alltools index 9c85a8802..1809f797d 100644 --- a/Dockerfile.alltools +++ b/Dockerfile.alltools @@ -1,7 +1,7 @@ # Build Geth in a stock Go builder container FROM golang:1.12-alpine as builder -RUN apk add --no-cache make gcc musl-dev linux-headers g++ gmp-dev openssl-dev pkgconfig +RUN apk add --no-cache make gcc musl-dev linux-headers g++ gmp-dev pkgconfig ADD . /dexon RUN cd /dexon && make clean && DOCKER=alpine make all @@ -9,7 +9,6 @@ RUN cd /dexon && make clean && DOCKER=alpine make all # Pull all binaries into a second stage deploy alpine container FROM alpine:latest -RUN apk add --no-cache ca-certificates libstdc++ gmp openssl COPY --from=builder /dexon/build/bin/* /usr/local/bin/ EXPOSE 8545 8546 30303 30303/udp |