Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/package/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the source binary
FROM golang:1.23-alpine AS builder
FROM golang:1.25-alpine AS builder
ARG TARGETOS
ARG TARGETARCH

Expand All @@ -25,7 +25,7 @@ RUN --mount=type=cache,target=/go/pkg \
go generate ./... \
&& GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags="-s -w -X github.com/overmindtech/aws-source/tracing.ServiceVersion=$(git describe --tags --exact-match 2>/dev/null || git rev-parse --short HEAD)" -trimpath -o source main.go

FROM alpine:3.21
FROM alpine:3.22
WORKDIR /
COPY --from=builder /workspace/source .
USER 65534:65534
Expand Down
Loading