Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.26.6@sha256:0d1d3a794be25f809dd2cb3160d8c73276c4056a9f8242a138e908ddeee7b6b6 AS builder
FROM golang:1.27.0@sha256:65b6f280bf050ec5af12716857e8ea8439d694dbba8f31ceeb7630670071f2bb AS builder
ARG TARGETOS
ARG TARGETARCH
# VERSION-01: build-stamped version (internal/version), passed via --build-arg at release time.
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.pipeline
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build the kollect-pipeline CLI binary (ADR-0801 pipeline mode).
# Same source tree, builder image, and hardening posture as the operator Dockerfile;
# only the entrypoint (./cmd/cli vs ./cmd) and runtime base differ.
FROM golang:1.26.6@sha256:0d1d3a794be25f809dd2cb3160d8c73276c4056a9f8242a138e908ddeee7b6b6 AS builder
FROM golang:1.27.0@sha256:65b6f280bf050ec5af12716857e8ea8439d694dbba8f31ceeb7630670071f2bb AS builder
ARG TARGETOS
ARG TARGETARCH
# VERSION-01: build-stamped version (internal/version), passed via --build-arg at release time.
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -ldflags
# git remotes (which shell out to git) are therefore unsupported in this minimal image; go-git over
# HTTPS, the local filesystem sink, and the object-store sinks (s3/gcs) all work. ca-certificates
# and tzdata ship in the distroless base, so TLS to sink endpoints works out of the box.
FROM gcr.io/distroless/static:nonroot@sha256:f7f8f729987ad0fdf6b05eeeae94b26e6a0f613bdf46feea7fc40f7bd72953e6
FROM gcr.io/distroless/static:nonroot@sha256:1c2c046bc09ed40fad370b599a0b1ae7987f55b01e247cf27a7c27cd97e5bbc7
WORKDIR /
COPY --from=builder /workspace/kollect-pipeline /kollect-pipeline
USER 65532:65532
Expand Down
Loading