From 44e90e2cf19c412ba045cf6beb8c14372496ed5f Mon Sep 17 00:00:00 2001 From: Ian Kay Date: Wed, 18 Oct 2023 12:04:21 -0400 Subject: [PATCH] update dockerfile for arm compatibility --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fe321d2..3dcf70f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,8 @@ COPY . . RUN GCO_ENABLED=0 GOOS=linux go build -race -ldflags="-s -w" -o ipld-eth-beacon-indexer . RUN chmod +x ipld-eth-beacon-indexer -FROM frolvlad/alpine-bash:latest -RUN apk --no-cache add ca-certificates libstdc++ busybox-extras gettext libintl +FROM alpine:latest +RUN apk --no-cache add ca-certificates libstdc++ busybox-extras gettext libintl bash gawk sed grep bc coreutils WORKDIR /root/ COPY --from=builder /go/src/github.com/vulcanize/ipld-eth-beacon-indexer/ipld-eth-beacon-indexer /root/ipld-eth-beacon-indexer ADD entrypoint.sh . -- 2.45.2