From fffcca42808b53086a168bc525d0baa794363b18 Mon Sep 17 00:00:00 2001 From: "Rodrigo M. Duarte" Date: Tue, 6 Aug 2024 16:05:39 -0300 Subject: [PATCH] Dockerfile: Add python3-distutils-extra in the container Signed-off-by: Rodrigo M. Duarte --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index d778a08..a26ab89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ RUN apt-get update && \ apt-get install -y --no-install-recommends realpath || true && \ apt-get install -y --no-install-recommends python python-dev || true && \ apt-get install -y --no-install-recommends python3 python3-dev || true && \ + apt-get install -y --no-install-recommends python3-distutils-extra || true && \ apt-get install -y --no-install-recommends python-dev-is-python3 || true && \ apt-get install -y --no-install-recommends libegl1-mesa || true && \ apt-get install -y --no-install-recommends \