From: Oleg Mitsura Date: Thu, 20 Feb 2020 15:42:35 +0000 (-0500) Subject: virtualenv lib changed. need to pin to older version. X-Git-Tag: 0.7.1~7^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=3620f68fbfa62f490535ace4c5d95b2c7d3fd81f;p=ccsdk%2Fcds.git 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 --- 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