From 169e04b607758fcaa4e1699c54d00bdaaf5c6002 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Thu, 5 Dec 2024 14:57:02 -0700 Subject: [PATCH] CI: Install python3.9-dev on ubuntu 20 --- ci/ubuntu-20.04/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/ubuntu-20.04/Dockerfile b/ci/ubuntu-20.04/Dockerfile index 257c7b9a..ad231ecd 100644 --- a/ci/ubuntu-20.04/Dockerfile +++ b/ci/ubuntu-20.04/Dockerfile @@ -12,7 +12,8 @@ RUN apt-get update && apt-get -y install \ git \ libssl-dev \ make \ - python3.9 \ - python3-dev \ + python3 \ + python3.9-dev \ + python3-distutils \ && apt autoclean \ && rm -rf /var/lib/apt/lists/*