From 7c7dd5bb7930182c58ec9b518a03db79bbac53e4 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 9 Dec 2023 19:03:33 +1100 Subject: [PATCH] Install virtualenv from package --- alpine/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 91ecb198..e54ecf89 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -19,6 +19,7 @@ RUN apk --no-cache add \ git \ meson \ py3-pip \ + py3-virtualenv \ sudo \ # Pillow dependencies freetype-dev \ @@ -40,7 +41,6 @@ RUN cd /depends \ && ./install_raqm.sh RUN /usr/sbin/adduser -D pillow \ - && pip3 install --no-cache-dir -I virtualenv \ && virtualenv /vpy3 \ && /vpy3/bin/pip install --no-cache-dir --upgrade pip \ && /vpy3/bin/pip install --no-cache-dir olefile pytest pytest-cov pytest-timeout \