diff options
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 |