From 292bcbcae420bea0069ece7320f729486a3960fc Mon Sep 17 00:00:00 2001 From: Jonathan Crockett Date: Wed, 27 Aug 2025 16:26:00 -0700 Subject: [PATCH] ubuntu-20.04: Fix python-3.9 breakage The smoke test now requires at least python-3.9, and Ubuntu 20.04 is at python-3.8. Install buildtools which will add a supported python revision. --- .../ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dockerfiles/ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile b/dockerfiles/ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile index 3034189..64bc6ab 100644 --- a/dockerfiles/ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile +++ b/dockerfiles/ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile @@ -61,6 +61,12 @@ RUN apt-get update && \ echo 'dash dash/sh boolean false' | debconf-set-selections && \ DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash +# Install buildtools due to python 3.9 requirement + +COPY install-buildtools.sh / +RUN bash /install-buildtools.sh && \ + rm /install-buildtools.sh + COPY build-install-dumb-init.sh / RUN bash /build-install-dumb-init.sh && \ rm /build-install-dumb-init.sh && \