From 2f901863899b99f8675bcfffe720ef1b4049a832 Mon Sep 17 00:00:00 2001 From: Carlo Piovesan Date: Tue, 1 Oct 2024 12:16:00 +0200 Subject: [PATCH] It's actually just python --- docker/linux_amd64/Dockerfile | 2 +- docker/linux_amd64_gcc4/Dockerfile | 2 +- docker/linux_arm64/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/linux_amd64/Dockerfile b/docker/linux_amd64/Dockerfile index b7deb8c..82149db 100644 --- a/docker/linux_amd64/Dockerfile +++ b/docker/linux_amd64/Dockerfile @@ -94,6 +94,6 @@ ENV PATH="/usr/local/go/bin:${PATH}" # Install Python3 RUN case "$extra_toolchains" in \ *\;python3\;*) \ - apt-get install -y -qq python3 \ + apt-get install -y -qq python \ ;; \ esac diff --git a/docker/linux_amd64_gcc4/Dockerfile b/docker/linux_amd64_gcc4/Dockerfile index f875bec..a74fb1c 100644 --- a/docker/linux_amd64_gcc4/Dockerfile +++ b/docker/linux_amd64_gcc4/Dockerfile @@ -75,6 +75,6 @@ ENV PATH="/usr/local/go/bin:${PATH}" # Install Python3 RUN case "$extra_toolchains" in \ *\;python3\;*) \ - apt-get install -y -qq python3 \ + apt-get install -y -qq python \ ;; \ esac diff --git a/docker/linux_arm64/Dockerfile b/docker/linux_arm64/Dockerfile index 6a9259d..3f352bd 100644 --- a/docker/linux_arm64/Dockerfile +++ b/docker/linux_arm64/Dockerfile @@ -93,6 +93,6 @@ esac # Install Python3 RUN case "$extra_toolchains" in \ *\;python3\;*) \ - apt-get install -y -qq python3 \ + apt-get install -y -qq python \ ;; \ esac