diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-12-20 11:19:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-12-20 11:19:08 +0000 |
commit | af9cc5cbef5849e23a89f1655093f170b4004cc4 (patch) | |
tree | 2bea9de2d29e217eafa22ec8dc3cd1dfe15abc45 /distributions/msb-apigateway/src/main | |
parent | c7cfc2c1a8b89815772191459ca6179827aba147 (diff) | |
parent | e477b97cdc6b8ebd5a9c9b1ed20880352fdcecf5 (diff) |
Merge "Add proxy support to build msb_base"
Diffstat (limited to 'distributions/msb-apigateway/src/main')
-rw-r--r-- | distributions/msb-apigateway/src/main/basedocker/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
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 |