diff options
author | Dan Timoney <dtimoney@att.com> | 2019-04-24 13:39:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-24 13:39:55 +0000 |
commit | 7f15996a7b250760d1d3ecb32520ce4e8755964e (patch) | |
tree | f702330b81e808359510d0bdcac1cebdbe0f86c0 /ms/command-executor/src/main/docker/Dockerfile | |
parent | 8f9a20b2908124655712b7688ba6b1b641b1608a (diff) | |
parent | 5a82232d3502a566466fac1f8d6f6aadc50fbc6e (diff) |
Merge "Support for dynamic property in command args"
Diffstat (limited to 'ms/command-executor/src/main/docker/Dockerfile')
-rw-r--r-- | ms/command-executor/src/main/docker/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ms/command-executor/src/main/docker/Dockerfile b/ms/command-executor/src/main/docker/Dockerfile index 50f592dd6..c0458bdf6 100644 --- a/ms/command-executor/src/main/docker/Dockerfile +++ b/ms/command-executor/src/main/docker/Dockerfile @@ -1,6 +1,9 @@ FROM python:3.6-slim -ENV GRPC_PYTHON_VERSION 1.19.0 +ENV HTTP_PROXY ${HTTP_PROXY} +ENV HTTPS_PROXY ${HTTPS_PROXY} + +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 |