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
4 changes: 2 additions & 2 deletions bin/injector/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ RUN apt-get update && \
mv bpftool /usr/bin/bpftool-amd64

# Final stage
FROM gcr.io/distroless/python3-debian12:latest
FROM gcr.io/distroless/python3-debian13:latest

ARG TARGETARCH

Expand Down Expand Up @@ -112,7 +112,7 @@ ENTRYPOINT ["/usr/local/bin/chaos-injector"]

LABEL baseimage.os="debian"
LABEL baseimage.isgbi="custom"
LABEL baseimage.name="gcr.io/distroless/python3-debian12:latest"
LABEL baseimage.name="gcr.io/distroless/python3-debian13:latest"

ARG BUILDSTAMP
LABEL baseimage.buildstamp="${BUILDSTAMP}"
4 changes: 2 additions & 2 deletions bin/manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
go build -o manager .

# Final stage
FROM gcr.io/distroless/base-debian12:nonroot
FROM gcr.io/distroless/base-debian13:nonroot

COPY --chmod=100 --from=builder /go/src/github.com/chaos-controller/manager /usr/local/bin/manager

ENTRYPOINT ["/usr/local/bin/manager"]

LABEL baseimage.os="debian"
LABEL baseimage.isgbi="custom"
LABEL baseimage.name="gcr.io/distroless/base-debian12:nonroot"
LABEL baseimage.name="gcr.io/distroless/base-debian13:nonroot"

ARG BUILDSTAMP
LABEL baseimage.buildstamp="${BUILDSTAMP}"