add git to builder image

This commit is contained in:
Joel Wetzell
2026-04-14 07:40:35 -05:00
parent 1218da0091
commit f96957c235

View File

@@ -1,6 +1,6 @@
ARG GO_VERSION=1.26.2
FROM golang:${GO_VERSION}-alpine AS build
RUN apk --no-cache add ca-certificates tzdata
RUN apk --no-cache add ca-certificates tzdata git
WORKDIR /build
COPY go.mod go.sum ./
RUN go mod download