From e06728dff19ab0214737befd7b0fe9aa92f9d402 Mon Sep 17 00:00:00 2001 From: Dinar Valeev Date: Mon, 29 Jun 2026 19:30:15 +0200 Subject: [PATCH] Install ca-certificates into an image We need to have an ability to inject custom CA later on Signed-off-by: Dinar Valeev --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b38d6c52..9a6dd3a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,7 +49,7 @@ ENTRYPOINT ["/usr/bin/elemental3ctl"] FROM runner-base AS runner-elemental3 RUN zypper --non-interactive removerepo repo-update || true; \ - zypper --non-interactive install --no-recommends xorriso qemu-img && \ + zypper --non-interactive install --no-recommends xorriso qemu-img ca-certificates && \ zypper clean --all ENTRYPOINT ["/usr/bin/elemental3"]