From ac89be52a4912c6c273efcf3f45bb711c37991fa Mon Sep 17 00:00:00 2001 From: Andreas Stephanides Date: Wed, 17 Nov 2021 20:42:43 +0000 Subject: [PATCH] virtualenv --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d2ecfc..a4df2d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3.8-slim-buster as builder -RUN python -m venv /opt/venv +RUN virtualenv /opt/venv RUN apt-get update && apt-get install -y build-essential COPY requirements.txt . RUN pip install uwsgi