Add ARG and PKG_VERSION to Dockerfile 30/87430/4
authoryangyan <yangyanyj@chinamobile.com>
Fri, 10 May 2019 09:07:54 +0000 (17:07 +0800)
committerYan Yang <yangyanyj@chinamobile.com>
Fri, 10 May 2019 09:18:53 +0000 (09:18 +0000)
Change-Id: I260ab6b5a2c9d7cb464649eda0ff96d1412e57af
Issue-ID: VFC-1383
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
docker/Dockerfile
docker/build_image.sh
docker/docker-env-conf.sh

index 98bea25..6631641 100644 (file)
@@ -2,8 +2,10 @@ 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_version=${PKG_VERSION}
 ADD . /service
 WORKDIR /service
 
index 17ef9a7..e4538d0 100755 (executable)
@@ -13,6 +13,8 @@ DOCKER_REPOSITORY="nexus3.onap.org:10003"
 IMAGE_NAME="${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/${IMAGE}"
 TIMESTAMP=$(date +"%Y%m%dT%H%M%S")
 
+BUILD_ARGS+=" --build-arg PKG_VERSION=${VERSION}"
+
 if [ $HTTP_PROXY ]; then
     BUILD_ARGS+=" --build-arg HTTP_PROXY=${HTTP_PROXY}"
 fi
index fe35ff9..51f98c5 100755 (executable)
@@ -8,7 +8,7 @@ install_sf(){
 
     # get binary zip from nexus - vfc-nfvo-genericparser
 
-    wget -q -O modeling-genericparser.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.modeling.genericparser&a=modeling-genericparser&e=zip&v=1.0.1-SNAPSHOT' && \
+    wget -q -O modeling-genericparser.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.modeling.genericparser&a=modeling-genericparser&e=zip&v=${pkg_version}-SNAPSHOT&e=zip' && \
     unzip modeling-genericparser.zip && \
     rm -rf modeling-genericparser.zip && \
     pip install --upgrade setuptools pip  && \