diff options
author | Manoop Talasila <talasila@research.att.com> | 2017-07-06 20:38:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-07-06 20:38:03 +0000 |
commit | fec1ab242c9086a32b04e3ded4518dd20eeca7d3 (patch) | |
tree | 7b2436d3d7d4ea07f87ceedc946ae629a0ee5283 | |
parent | 6771b0e2bf6b0df221c920466a495e84e83a44f5 (diff) | |
parent | 47d9cadde3ea38210db0324564960a9853d863a2 (diff) |
Merge "Add proxy support in DockerFile"
-rw-r--r-- | deliveries/os_Dockerfile | 9 | ||||
-rwxr-xr-x | deliveries/os_build_febe.sh | 13 | ||||
-rwxr-xr-x | deliveries/os_settings.sh | 2 |
3 files changed, 22 insertions, 2 deletions
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 diff --git a/deliveries/os_build_febe.sh b/deliveries/os_build_febe.sh index a87831af..2d6117c3 100755 --- a/deliveries/os_build_febe.sh +++ b/deliveries/os_build_febe.sh @@ -84,5 +84,14 @@ cat dbca-create-mysql-1707-os.sql ../../dbca-common/db-scripts/dbca-ddl-mysql-17 # install into docker cd $CURRENTDIR -echo "running: docker build -t ${IMGNAME} --build-arg VERSION=${VERSION} --build-arg PORTAL_SDK_DIR=${PORTAL_SDK_DIR} --build-arg SDK_DIR=${SDK_DIR} --build-arg FE_DIR=${FE_DIR} --build-arg PORTAL_DBC_DIR=${PORTAL_DBC_DIR} -f ./os_Dockerfile ." -docker build -t ${IMGNAME} --build-arg VERSION=${VERSION} --build-arg PORTAL_SDK_DIR=${PORTAL_SDK_DIR} --build-arg SDK_DIR=${SDK_DIR} --build-arg FE_DIR=${FE_DIR} --build-arg PORTAL_DBC_DIR=${PORTAL_DBC_DIR} -f ./os_Dockerfile . +PROXY_ARGS="" +if [ $HTTP_PROXY ]; then + PROXY_ARGS+="--build-arg HTTP_PROXY=${HTTP_PROXY}" +fi +if [ $HTTPS_PROXY ]; then + PROXY_ARGS+=" --build-arg HTTPS_PROXY=${HTTPS_PROXY}" +fi + +EXEC_CMD="docker build -t ${IMGNAME} ${PROXY_ARGS} --build-arg VERSION=${VERSION} --build-arg PORTAL_SDK_DIR=${PORTAL_SDK_DIR} --build-arg SDK_DIR=${SDK_DIR} --build-arg FE_DIR=${FE_DIR} --build-arg PORTAL_DBC_DIR=${PORTAL_DBC_DIR} -f ./os_Dockerfile ." +echo $EXEC_CMD +$EXEC_CMD
\ No newline at end of file diff --git a/deliveries/os_settings.sh b/deliveries/os_settings.sh index d4ab1853..0ad53fdc 100755 --- a/deliveries/os_settings.sh +++ b/deliveries/os_settings.sh @@ -1,3 +1,5 @@ +#!/bin/bash + IMGNAME=ep:1610-1 VERSION=1.1.0-SNAPSHOT ETCDIR=etc |