summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2017-11-27 12:55:48 -0800
committerVictor Morales <victor.morales@intel.com>2017-11-30 12:00:04 -0800
commite477b97cdc6b8ebd5a9c9b1ed20880352fdcecf5 (patch)
tree392b0c0d07f3e6ef2bbca28ea4e4b68187164c57
parent90ba6fa6bc7b0ac45b3925f1e891e669996b5309 (diff)
Add proxy support to build msb_base
The process to create msb_base docker image doesn't support builds behind a corporate proxy. The addition of respective support can be benefitial for those developers who work inside of corporate networks. Change-Id: Id9201a7298748d2c3e1cc58b95f1516aa8b0bec0 Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-ID: MSB-100
-rw-r--r--ci/build_docker_image.sh9
-rw-r--r--distributions/msb-apigateway/src/main/basedocker/Dockerfile7
2 files changed, 15 insertions, 1 deletions
diff --git a/ci/build_docker_image.sh b/ci/build_docker_image.sh
index 45ac274..5d94507 100644
--- a/ci/build_docker_image.sh
+++ b/ci/build_docker_image.sh
@@ -22,7 +22,14 @@ if [[ ${NAME} && ${VERSION} && ${DIR} ]]; then
echo "assign the x to all files and dirs under current dir.."
chmod +x -R .
echo "begin to build image ${NAME}.."
- docker build --no-cache -t ${NAME}:${VERSION} . >/dev/null || { echo -e "\nBuild docker image failed!";exit 1; }
+ build_args=""
+ if [ $http_proxy ]; then
+ build_args+=" --build-arg http_proxy=$http_proxy"
+ fi
+ if [ $https_proxy ]; then
+ build_args+=" --build-arg https_proxy=$https_proxy"
+ fi
+ docker build --no-cache -t ${NAME}:${VERSION} $build_args . >/dev/null || { echo -e "\nBuild docker image failed!";exit 1; }
docker rmi $(docker images | grep "^<none>" | awk '{print $3}') &>/dev/null
# docker save -o ${NAME}.tar ${NAME}:${VERSION} >/dev/null || { rm -f ${NAME}.tar &>/dev/null;echo -e "\nSave docker image failed!";exit 1; }
if [ ! -d ${DIR} ]; then
diff --git a/distributions/msb-apigateway/src/main/basedocker/Dockerfile b/distributions/msb-apigateway/src/main/basedocker/Dockerfile
index 02af8b1..60fbe57 100644
--- a/distributions/msb-apigateway/src/main/basedocker/Dockerfile
+++ b/distributions/msb-apigateway/src/main/basedocker/Dockerfile
@@ -1,6 +1,13 @@
# Dockerfile - msb-base
FROM openresty/openresty:alpine
+# Setup proxy variables
+ARG http_proxy
+ARG https_proxy
+
+ENV http_proxy ${http_proxy}
+ENV https_proxy ${https_proxy}
+
#install java-1.8-openjdk
ENV LANG C.UTF-8