diff options
author | Dan Timoney <dtimoney@att.com> | 2020-10-06 20:24:35 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-10-06 20:24:35 -0400 |
commit | f8d7ed15b97448d95fa0479c55fd5ca165916070 (patch) | |
tree | ff822bf8c76353671cebbb3a03c121f1f017fb48 | |
parent | 127deeeaae131e544d57c89bcb97604a88b27858 (diff) |
Fix base docker version
Fixed base docker version to correct startup issue
Change-Id: I40bd5e798bd0c6ae54d5dd2e057ca6d690b5badd
Issue-ID: SDNC-1371
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: be876b83054f8b455aa2a2f83d1d59921892e446
-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)" |