diff options
author | Victor Morales <victor.morales@intel.com> | 2017-06-14 14:45:20 -0500 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-06-14 14:45:20 -0500 |
commit | 648b32ece75395b0dd71a7eff9c1270b45f71c52 (patch) | |
tree | 6e08104a814fe59491afae72d80a52ba35437478 /sdc-os-chef/sdc-cassandra | |
parent | 89786d31f266a205857cae0177904c249ac6a512 (diff) |
Add proxy support
It's not possible to build the Docker images behind a corporate
proxy. This change adds support to HTTP and HTTPS protocols for
creation of images.
Change-Id: Iabe675d86e2879270dda069179b7b854da0a93bd
Signed-off-by: Victor Morales <victor.morales@intel.com>
Diffstat (limited to 'sdc-os-chef/sdc-cassandra')
-rw-r--r-- | sdc-os-chef/sdc-cassandra/Dockerfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sdc-os-chef/sdc-cassandra/Dockerfile b/sdc-os-chef/sdc-cassandra/Dockerfile index 3e9295db5e..7af6de1de4 100644 --- a/sdc-os-chef/sdc-cassandra/Dockerfile +++ b/sdc-os-chef/sdc-cassandra/Dockerfile @@ -1,5 +1,14 @@ FROM cassandra:2.1.17 +ARG HTTP_PROXY +ARG HTTPS_PROXY + +ENV HTTP_PROXY ${HTTP_PROXY} +ENV HTTPS_PROXY ${HTTPS_PROXY} + +RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; fi && \ + if [ ! -z ${HTTPS_PROXY} ]; then echo "Acquire::https::proxy \"${HTTPS_PROXY}\";" >> /etc/apt/apt.conf; fi + #ENV DEBIAN_FRONTEND noninteractive RUN apt-get -y update && apt-get -y install --no-install-recommends \ curl \ |