From 4f20ddde900c4a95ccecb1064a80383c85c5063b Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 01:09:48 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20python-six=20=E2=86=92=20python3-six=20(?= =?UTF-8?q?cscan.py=20runs=20under=20python3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9bbf973..ac3167a 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 python3 bsdmainutils curl python-six ca-certificates" && \ + export RUNTIME_PACKAGES="python python3 bsdmainutils curl python3-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 && \