From 48bfeb1a65d3730424609dfac54d87bb0aa82c10 Mon Sep 17 00:00:00 2001 From: Honza Horak Date: Tue, 16 May 2017 09:12:07 +0200 Subject: [PATCH] Fix env var for virtualenv --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a2780d5..935e3fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,7 +61,7 @@ COPY root / # Create a Python virtual environment for use by any application to avoid # potential conflicts with Python packages preinstalled in the main Python # installation. -RUN virtualenv-$VERSION /opt/app-root +RUN virtualenv-$PYTHON_VERSION /opt/app-root # In order to drop the root user, we have to make some directories world # writable as OpenShift default security model is to run the container under