mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
1b2bf8bf61
* fix git commit when using `make docker` * avoid warning about LATEST_COMMIT for linters in Docker
29 lines
893 B
Docker
29 lines
893 B
Docker
FROM golang:1.15-alpine3.12 as builder
|
|
|
|
ARG git_commit
|
|
ENV GIT_COMMIT=$git_commit
|
|
|
|
# for linters to avoid warnings. we won't use linters in Docker anyway
|
|
ENV LATEST_COMMIT="undefined"
|
|
|
|
RUN apk --no-cache add make gcc g++ linux-headers git bash ca-certificates libgcc libstdc++
|
|
|
|
WORKDIR /app
|
|
|
|
# next 2 lines helping utilize docker cache
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
# https://github.com/valyala/gozstd/issues/20#issuecomment-557499034
|
|
RUN GOZSTD_VER=$(cat go.mod | fgrep github.com/valyala/gozstd | awk '{print $NF}'); cd ${GOPATH}/pkg/mod/github.com/valyala/gozstd@${GOZSTD_VER}; if [[ ! -f _rebuilt ]]; then chmod -R +w .; make -j1 clean; make -j1 libzstd.a; touch _rebuilt; fi;
|
|
|
|
ADD . .
|
|
RUN make all
|
|
|
|
FROM alpine:3.12
|
|
|
|
RUN apk add --no-cache ca-certificates libgcc libstdc++
|
|
COPY --from=builder /app/build/bin/* /usr/local/bin/
|
|
|
|
EXPOSE 8545 8546 30303 30303/udp 8080 9090 6060
|