From 47d9cadde3ea38210db0324564960a9853d863a2 Mon Sep 17 00:00:00 2001 From: Shashank Kumar Shankar Date: Wed, 14 Jun 2017 15:32:06 -0700 Subject: Add proxy support in DockerFile This helps to build Portal Docker image behind a proxy. Change-Id: I65fdd952ef9a9060f87dbbdc5a16909c825b493e Signed-off-by: Shashank Kumar Shankar --- deliveries/os_Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'deliveries/os_Dockerfile') diff --git a/deliveries/os_Dockerfile b/deliveries/os_Dockerfile index efba0bdd..56faa6ad 100644 --- a/deliveries/os_Dockerfile +++ b/deliveries/os_Dockerfile @@ -3,6 +3,15 @@ FROM ubuntu:14.04 +ARG HTTP_PROXY=${HTTP_PROXY} +ARG HTTPS_PROXY=${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 + # Install the python script required for "add-apt-repository" RUN apt-get update && apt-get install -y software-properties-common -- cgit 1.2.3-korg