From c84726a6a7ac1fc9579184bc6fe6e3297ef4c9fe Mon Sep 17 00:00:00 2001 From: Air <88528265+air3ijai@users.noreply.github.com> Date: Tue, 28 May 2024 22:01:26 +0300 Subject: [PATCH] Add git to the Docker image (#291) (#292) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5661424..4b4223f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN cd $D && go build -o web3-alpine ./cmd/web3 && cp web3-alpine /tmp/ # final stage FROM alpine -RUN apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates git WORKDIR /app COPY --from=build-env /tmp/web3-alpine /app/web3 ENTRYPOINT ["/app/web3"]