diff options
-rw-r--r-- | installation/sdnc/pom.xml | 2 | ||||
-rwxr-xr-x | installation/sdnc/src/main/docker/standalone.Dockerfile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/installation/sdnc/pom.xml b/installation/sdnc/pom.xml index 77bd6659..56713165 100644 --- a/installation/sdnc/pom.xml +++ b/installation/sdnc/pom.xml @@ -25,7 +25,7 @@ <sdnc.project.version>${project.version}</sdnc.project.version> <sdnc.build.timestamp>${maven.build.timestamp}</sdnc.build.timestamp> <sdnc.northbound.version>2.0.1</sdnc.northbound.version> - <ccsdk.docker.version>1.0-STAGING-latest</ccsdk.docker.version> + <ccsdk.docker.version>1.0.1</ccsdk.docker.version> <sdnc.keystore>org.onap.sdnc.p12</sdnc.keystore> <sdnc.keypass><![CDATA[;:G58,7ZhqOSI:7^oZCY[9Dv]]></sdnc.keypass> <sdnc.secureport>8443</sdnc.secureport> diff --git a/installation/sdnc/src/main/docker/standalone.Dockerfile b/installation/sdnc/src/main/docker/standalone.Dockerfile index 58907dc1..9814455c 100755 --- a/installation/sdnc/src/main/docker/standalone.Dockerfile +++ b/installation/sdnc/src/main/docker/standalone.Dockerfile @@ -1,6 +1,6 @@ # Prepare stage for multistage image build ## START OF STAGE0 ## -FROM onap/ccsdk-odlsli-alpine-image:latest AS stage0 +FROM onap/ccsdk-odlsli-alpine-image:${ccsdk.docker.version} AS stage0 USER root @@ -14,7 +14,7 @@ COPY system /tmp/system RUN rsync -a /tmp/system $ODL_HOME ## END OF STAGE0 ## -FROM onap/ccsdk-odlsli-alpine-image:latest +FROM onap/ccsdk-odlsli-alpine-image:${ccsdk.docker.version} LABEL maintainer="SDN-C Team (sdnc@lists.onap.org)" |