From 648b32ece75395b0dd71a7eff9c1270b45f71c52 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Wed, 14 Jun 2017 14:45:20 -0500 Subject: 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 --- sdc-os-chef/sdc-backend/Dockerfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'sdc-os-chef/sdc-backend') diff --git a/sdc-os-chef/sdc-backend/Dockerfile b/sdc-os-chef/sdc-backend/Dockerfile index e43a156d47..0dde50e4af 100644 --- a/sdc-os-chef/sdc-backend/Dockerfile +++ b/sdc-os-chef/sdc-backend/Dockerfile @@ -1,4 +1,13 @@ -FROM jetty:9.3-jre8 +FROM jetty:9.3.15-jre8 + +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 RUN apt-get -y update RUN apt-get -y install apt-utils -- cgit 1.2.3-korg