From 3aa1590f3bcf6e2ea164d28c37b5e9f51bb935ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barth=C3=A9lemy?= <31370477+BarthPaleologue@users.noreply.github.com> Date: Fri, 28 Apr 2023 13:34:57 +0200 Subject: [PATCH] Fixed Dependency in Dockerfile It was missing python3.7-distutils which caused this error: `ModuleNotFoundError: No module named 'distutils.cmd'` --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6400e19..caf19ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ ADD https://bootstrap.pypa.io/get-pip.py get-pip.py RUN add-apt-repository -y ppa:deadsnakes/ppa && \ apt update && \ apt install -y python3.7 && \ + apt install -y python3.7-distutils && \ python3.7 get-pip.py && \ rm -rf /root/get-pip.py && \ apt install libpython3.7