From 564a6a3a8e2be0be31431a8a5dc622cf171bdeea Mon Sep 17 00:00:00 2001 From: Farhan Patwa Date: Fri, 18 Jun 2021 13:35:08 -0500 Subject: [PATCH] Add python3-venv package --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 515531a..c84c908 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,10 @@ ENV USER root # build depends RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ + apt-get install -y --no-install-recommends \ build-essential software-properties-common ca-certificates libssl-dev \ libvirt-dev libvirt-daemon-system automake gcc pkg-config qemu unzip \ - locales python-minimal python3.6-dev python3-pip openssh-client git \ + locales python-minimal python3.6-dev python3-pip python3-venv openssh-client git \ python-minimal python2.7 python libpython-stdlib libpython2.7-stdlib && \ apt-get autoremove -y && \ apt-get clean && \