Add proxy support to build msb_base
[msb/apigateway.git] / distributions / msb-apigateway / src / main / basedocker / Dockerfile
index 02af8b1..60fbe57 100644 (file)
@@ -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