From 50391c215f27137b626e4718aad939ba088f91e6 Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 01:04:55 +0000 Subject: [PATCH] fix: add python3 to runtime packages (cscan.sh requires python3) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1e0bacf..9bbf973 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 ca-certificates" && \ + export RUNTIME_PACKAGES="python python3 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 && \