From a4a83b2e88761b8c5efe55e0d5eaf3c3e8f2540f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20W=C3=A5reus?= Date: Mon, 30 Oct 2023 19:21:35 +0100 Subject: [PATCH] add venv --- build/docker/debian.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/docker/debian.Dockerfile b/build/docker/debian.Dockerfile index 0340e981..a9391a9b 100644 --- a/build/docker/debian.Dockerfile +++ b/build/docker/debian.Dockerfile @@ -68,13 +68,14 @@ RUN echo "deb http://ftp.us.debian.org/debian testing-updates main" >> /etc/apt/ RUN apt -y update && apt -y upgrade && apt -y install openjdk-11-jre \ python3 \ - python3-scipy \ + python3-venv \ ca-certificates \ python3-pip && \ apt -y install -t testing golang-1.20 && \ apt -y clean && rm -rf /var/lib/apt/lists/* && \ # Symlink pip3 to pip, we assume that "pip" works in CLI ln -sf /usr/bin/pip3 /usr/bin/pip && \ + ln -sf /usr/bin/python3 /usr/bin/python && \ # Symlink go binary to bin directory which is in path ln -s /usr/lib/go-1.20/bin/go /usr/bin/go