From 0dbc0cb712a3798bd2c3cfbff55a07dbbcd8c264 Mon Sep 17 00:00:00 2001 From: Daniel Freiling Date: Mon, 26 Aug 2024 22:52:03 +0200 Subject: [PATCH] fix(docker): include ca-certificates in runtime image --- ci/Dockerfile | 3 ++- ci/helm-chart/Chart.yaml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index 26fc86d5..20ea6bed 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -49,7 +49,8 @@ COPY test/cert/privkey-edrlab-test.pem /app/cert/edrlab.key COPY test/config.localhost.yaml /app/config.yaml COPY test/.htpasswd /app/.htpasswd -# RUN ls -al /app && sleep 600 +# Update CA certificates +RUN apt-get update && apt-get -y install ca-certificates && apt-get clean # Run as non-root LCP user USER lcp diff --git a/ci/helm-chart/Chart.yaml b/ci/helm-chart/Chart.yaml index 0cb363d9..dd5a3edc 100644 --- a/ci/helm-chart/Chart.yaml +++ b/ci/helm-chart/Chart.yaml @@ -6,5 +6,5 @@ home: https://github.com/notalib/readium-lcp-server keywords: - "lcp" - "readium" -version: "1.9.2-prod1" -appVersion: "1.9.2" +version: "1.9.2-prod2" +appVersion: "1.9.2-prod2"