From 402415c9fc644e87abd8d05d75d548873260c80d Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Sat, 13 Apr 2024 09:10:16 -0400 Subject: [PATCH] fix: install python3 and remove python3-pip when installed Signed-off-by: Devin Buhl --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7af2582..911b409 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,8 +23,10 @@ RUN \ apt-get install --no-install-recommends -y \ catatonit \ intel-gpu-tools \ + python3 \ python3-pip \ && pip install --no-cache-dir -r requirements.txt \ + && apt-get remove -y python3-pip \ && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \ && apt-get autoremove -y \ && apt-get clean \