From 3620f68fbfa62f490535ace4c5d95b2c7d3fd81f Mon Sep 17 00:00:00 2001 From: Oleg Mitsura Date: Thu, 20 Feb 2020 10:42:35 -0500 Subject: virtualenv lib changed. need to pin to older version. Issue-ID: CCSDK-2108 virtualenv no longer has "writefile" function, also activate_this.py has changed. we don't have time to investigate the impact right now, so doing this work-around. Signed-off-by: Oleg Mitsura Change-Id: I9503050163ba420cf0e39ded4d992a34bf5d0ae3 --- ms/command-executor/src/main/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ms/command-executor/src/main/docker/Dockerfile') diff --git a/ms/command-executor/src/main/docker/Dockerfile b/ms/command-executor/src/main/docker/Dockerfile index b28e580fb..70cf943f6 100644 --- a/ms/command-executor/src/main/docker/Dockerfile +++ b/ms/command-executor/src/main/docker/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.6-slim ENV GRPC_PYTHON_VERSION 1.20.0 RUN python -m pip install --upgrade pip RUN pip install grpcio==${GRPC_PYTHON_VERSION} grpcio-tools==${GRPC_PYTHON_VERSION} -RUN pip install virtualenv +RUN pip install virtualenv==16.7.9 COPY start.sh /opt/app/onap/start.sh RUN chmod u+x /opt/app/onap/start.sh -- cgit 1.2.3-korg