Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the approver-policy binary
FROM docker.io/library/golang:1.20 as builder
FROM docker.io/library/golang:1.25 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand All @@ -12,7 +12,7 @@ COPY main.go main.go
# Build
RUN go build -o cert-manager-example-approver-policy-plugin main.go

FROM gcr.io/distroless/base@sha256:0477dc38b254096e350a9b605b7355d3cf0d5a844558e6986148ce2a1fe18ba8
FROM gcr.io/distroless/base@sha256:9e9b50d2048db3741f86a48d939b4e4cc775f5889b3496439343301ff54cdba8
LABEL description="example cert-manager approver-policy plugin"

WORKDIR /
Expand Down