diff options
author | barak <barak.dabush@amdocs.com> | 2017-06-27 02:45:02 +0300 |
---|---|---|
committer | barak <barak.dabush@amdocs.com> | 2017-06-27 02:56:46 +0300 |
commit | 131c2a42541fb807f395fe1f39a8482a53f92c60 (patch) | |
tree | 1797cfa1cd6927cd0cf7175a0b5fea120949f170 /kubernetes/readiness/docker | |
parent | d6ea987caed84a9f36030a5a1516df7c6186362d (diff) |
[OOM-2] Replaced static proxy with env
Change-Id: Id2b640f9cfa58337e94d26b4f0939a33db45a137
Signed-off-by: barak <barak.dabush@amdocs.com>
Diffstat (limited to 'kubernetes/readiness/docker')
-rw-r--r-- | kubernetes/readiness/docker/init/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/readiness/docker/init/Dockerfile b/kubernetes/readiness/docker/init/Dockerfile index b0fd68b44e..20f2268975 100644 --- a/kubernetes/readiness/docker/init/Dockerfile +++ b/kubernetes/readiness/docker/init/Dockerfile @@ -2,8 +2,8 @@ from ubuntu:16.04 ENV no_proxy "localhost,127.0.0.1,.cluster.local,$KUBERNETES_SERVICE_HOST" # Setup Corporate proxy -ENV https_proxy http://genproxy.amdocs.com:8080/ -ENV http_proxy http://genproxy.amdocs.com:8080/ +ENV https_proxy ${HTTPS_PROXY} +ENV http_proxy ${HTTP_PROXY} # Additional packages RUN apt-get update |