From e456d1c3c5939ff2f1df681389f28e688e5c6657 Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 01:01:08 +0000 Subject: [PATCH] fix: add ca-certificates to fix SSL for git clone on ubuntu:18.04 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3b2884d..1e0bacf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL maintainer="Julien Cabillot " # hadolint ignore=DL3008,SC3009,SC2086 RUN export DEBIAN_FRONTEND=noninteractive && \ export BUILD_PACKAGES=git-core && \ - export RUNTIME_PACKAGES="python bsdmainutils curl python-six" && \ + export RUNTIME_PACKAGES="python bsdmainutils curl python-six ca-certificates" && \ apt-get -qq update && \ apt-get -qq --no-install-recommends --yes install ${BUILD_PACKAGES} ${RUNTIME_PACKAGES} && \ git clone https://github.com/jvehent/cipherscan.git && \