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 cfssl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags "-s -w
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags "-s -w -X github.com/cloudflare/cfssl/cli/version.version=1.6.5" -o /out/mkbundle ./cmd/mkbundle
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags "-s -w -X github.com/cloudflare/cfssl/cli/version.version=1.6.5" -o /out/multirootca ./cmd/multirootca

FROM alpine:3.22 AS cfssl-server
FROM alpine:3.23 AS cfssl-server

COPY --from=builder /out/* /

Expand All @@ -30,7 +30,7 @@ EXPOSE 8080

CMD ["/cfssl"]

FROM alpine:3.22 AS cfssl
FROM alpine:3.23 AS cfssl

COPY --from=builder /out/* /

Expand Down