summaryrefslogtreecommitdiffstats
path: root/gvnfmadapter/docker/Dockerfile
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2019-05-10 17:24:19 +0800
committerYan Yang <yangyanyj@chinamobile.com>2019-05-10 09:32:23 +0000
commitce8e73903661e866ce86704819fb30b3827b937f (patch)
tree1190b412c7765df4ca0659b9778e73e38d9522f1 /gvnfmadapter/docker/Dockerfile
parent8e4cb67379bbbab35439354b8b5d7072ca76be16 (diff)
Add ARG and PKG_VERSION to Dockerfile
Change-Id: Ia08a3d482f938a2bd9dec411abe1e707ef99c339 Issue-ID: VFC-1383 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'gvnfmadapter/docker/Dockerfile')
-rw-r--r--gvnfmadapter/docker/Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/gvnfmadapter/docker/Dockerfile b/gvnfmadapter/docker/Dockerfile
index ba04755..fe7cf43 100644
--- a/gvnfmadapter/docker/Dockerfile
+++ b/gvnfmadapter/docker/Dockerfile
@@ -2,8 +2,11 @@ FROM python:2-alpine
ARG HTTP_PROXY=${HTTP_PROXY}
ARG HTTPS_PROXY=${HTTPS_PROXY}
+ARG PKG_VERSION
ENV http_proxy $HTTP_PROXY
ENV https_proxy $HTTPS_PROXY
+ENV pkg_verison=${PKG_VERSION}
+
ADD . /service
WORKDIR /service