From fd38eb4d18974d0cab9a46e42a0fb957818d6f70 Mon Sep 17 00:00:00 2001 From: Harvey Rendell Date: Thu, 23 Jul 2020 22:30:53 +1200 Subject: [PATCH] lock pipenv version as workaround for https://github.com/pypa/pipenv/issues/4273 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 098ebb3..fd87c2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update && \ libfreetype6-dev \ libc6 \ gcc -RUN pip install pipenv +RUN pip install 'pipenv==2018.11.26' # Install from wheel on arm processors to avoid building from source RUN if [ $(uname -m) = armv7l ]; then \