erigon-pulse/Dockerfile

32 lines
661 B
Docker
Raw Normal View History

2021-03-19 09:32:52 +00:00
FROM golang:1.16-alpine3.13 as builder
ARG git_commit
ENV GIT_COMMIT=$git_commit
2021-03-01 04:02:06 +00:00
ARG git_branch
ENV GIT_BRANCH=$git_branch
ARG git_tag
ENV GIT_TAG=$git_tag
# for linters to avoid warnings. we won't use linters in Docker anyway
ENV LATEST_COMMIT="undefined"
2020-10-28 03:18:10 +00:00
RUN apk --no-cache add make gcc g++ linux-headers git bash ca-certificates libgcc libstdc++
2020-08-21 12:38:11 +00:00
WORKDIR /app
# next 2 lines helping utilize docker cache
2020-08-21 12:38:11 +00:00
COPY go.mod go.sum ./
RUN go mod download
2020-08-21 12:38:11 +00:00
ADD . .
2020-08-27 06:45:24 +00:00
RUN make all
2017-09-05 09:16:59 +00:00
2021-03-19 09:32:52 +00:00
FROM alpine:3.13
RUN apk add --no-cache ca-certificates libgcc libstdc++ tzdata
COPY --from=builder /app/build/bin/* /usr/local/bin/
EXPOSE 8545 8546 30303 30303/udp 8080 9090 6060