diff --git a/Dockerfile b/Dockerfile index 8e70088..acad6c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,5 +22,6 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /out/action ./main.go # — Runtime stage — ######################## FROM alpine:3.20 +RUN apk add --no-cache git COPY --from=builder /out/action /usr/local/bin/action ENTRYPOINT ["/usr/local/bin/action"]