From c8ce7adb2928bcd0d2a6784134204a7aabb66141 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Wed, 26 May 2021 14:59:30 -0500 Subject: [PATCH] Ubuntu 20.04: Add Python venv Python virtual environments are used by a lot of tools to handle their dependencies, so add it to the image Signed-off-by: Joshua Watt --- dockerfiles/ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dockerfiles/ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile b/dockerfiles/ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile index cb1ee27..e09d3cc 100644 --- a/dockerfiles/ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile +++ b/dockerfiles/ubuntu/ubuntu-20.04/ubuntu-20.04-base/Dockerfile @@ -32,6 +32,7 @@ RUN apt-get update && \ python \ python3 \ python3-pip \ + python3-venv \ python3-pexpect \ xz-utils \ locales \