2 Commits

Author SHA1 Message Date
Joel Wetzell
f96957c235 add git to builder image 2026-04-14 07:40:35 -05:00
Joel Wetzell
1218da0091 Merge pull request #133 from jwetzell/chore/osc-upgrade
upgrade osc-go library to v0.3.0 and handle new error cases
2026-04-14 07:30:29 -05:00

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