From 7f82583c6c65637d6ebcca14f0f0517a6cd47293 Mon Sep 17 00:00:00 2001 From: Dennis Marttinen Date: Sun, 7 Sep 2025 10:25:59 +0300 Subject: [PATCH] fix: add `ca-certificates` to the bootstrap container This is not shipped as part of the base image, and is required for `update-ca-certificates`. Signed-off-by: Dennis Marttinen --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6c41545..bfacba4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3 as base RUN apk --no-cache upgrade && \ - apk --no-cache add bash bash-completion cosign curl g++ git helm jq k9s kubectl kustomize less linux-headers make moreutils nano nano-syntax openssl pipx python3-dev yq + apk --no-cache add bash bash-completion ca-certificates cosign curl g++ git helm jq k9s kubectl kustomize less linux-headers make moreutils nano nano-syntax openssl pipx python3-dev yq # Build environment for tooling FROM base as build