diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-12-27 21:03:13 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:55 +0800 |
commit | f41cab3f7b7f614c4f6e1802a890839ba51ca5e6 (patch) | |
tree | e683064fb446da65c1bc469b14c3159b1f48734e | |
parent | e846701f0556712bcc15f676793f300dbbaf27b4 (diff) | |
download | dexon-f41cab3f7b7f614c4f6e1802a890839ba51ca5e6.tar.gz dexon-f41cab3f7b7f614c4f6e1802a890839ba51ca5e6.tar.zst dexon-f41cab3f7b7f614c4f6e1802a890839ba51ca5e6.zip |
Dockerfile: clean bls before build (#109)
-rw-r--r-- | Dockerfile | 6 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile index 7d8668636..43dea93ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,15 @@ # Build Geth in a stock Go builder container FROM golang:1.11-alpine as builder -RUN apk add --no-cache make gcc musl-dev linux-headers g++ gmp-dev openssl-dev +RUN apk add --no-cache make gcc musl-dev linux-headers g++ gmp-dev openssl-dev pkgconfig ADD . /dexon -RUN cd /dexon && DOCKER=alpine make gdex +RUN cd /dexon && make clean && DOCKER=alpine make gdex # Pull Geth into a second stage deploy alpine container FROM alpine:latest -RUN apk add --no-cache ca-certificates libstdc++ +RUN apk add --no-cache ca-certificates libstdc++ curl gmp openssl COPY --from=builder /dexon/build/bin/gdex /usr/local/bin/ EXPOSE 8545 8546 30303 30303/udp @@ -46,6 +46,8 @@ libbls: clean: ./build/clean_go_build_cache.sh rm -fr build/_workspace/pkg/ $(GOBIN)/* + make -C vendor/github.com/dexon-foundation/bls clean + make -C vendor/github.com/dexon-foundation/mcl clean # The devtools target installs tools required for 'go generate'. # You need to put $GOBIN (or $GOPATH/bin) in your PATH to use 'go generate'. |