build that thing because permissions

This commit is contained in:
Sebastian
2023-08-13 07:45:55 +02:00
parent 03488dbd76
commit a114c5d4b6

View File

@@ -1,4 +1,20 @@
FROM thorax/erigon:v2.45.1 FROM docker.io/library/golang:1.20-alpine3.17 AS builder
RUN apk add --no-cache make g++ gcc musl-dev linux-headers git
ARG ERIGON_VERSION=v2.48.1
ARG ERIGON_REPOSITORY=https://github.com/ledgerwatch/erigon.git
RUN git clone --recurse-submodules -j8 $ERIGON_REPOSITORY
WORKDIR ./erigon
RUN git checkout ${ERIGON_VERSION}
RUN make erigon
FROM alpine:latest
RUN apk add --no-cache ca-certificates curl jq libstdc++ libgcc
COPY --from=builder /go/erigon/build/bin/erigon /usr/local/bin/
COPY ./scripts/entrypoint.sh /usr/local/bin/entrypoint.sh COPY ./scripts/entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod u+x /usr/local/bin/entrypoint.sh RUN chmod u+x /usr/local/bin/entrypoint.sh