diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-02-20 22:42:05 -0500 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2017-02-20 22:42:12 -0500 |
commit | fb9769f65dc4e73e950bd6e81a8438c5d65a92ca (patch) | |
tree | 238004a3cb71163a9d71ef192e8b7aac971c456a /jjb/policy | |
parent | 627335f0e0fe1f6be86b9d3ee5c9c5d8e661b497 (diff) |
release snapshot for now
Change-Id: If221023bb471f0d02bf6473632f0abd725b22847
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'jjb/policy')
-rw-r--r-- | jjb/policy/include-raw-docker.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/jjb/policy/include-raw-docker.sh b/jjb/policy/include-raw-docker.sh index 5ecae4b22..6b7749352 100644 --- a/jjb/policy/include-raw-docker.sh +++ b/jjb/policy/include-raw-docker.sh @@ -9,10 +9,11 @@ for image in policy-os policy-nexus policy-db policy-base policy-drools policy-p echo "Building $image" mkdir -p target/$image cp $image/* target/$image - docker build --quiet --tag ${DOCKER_REPOSITORY}/openecomp/policy/$image target/$image + docker build --quiet --tag ${DOCKER_REPOSITORY}/openecomp/policy/$image:1.0.0-SNAPSHOT target/$image + docker images done for image in policy-nexus policy-db policy-drools policy-pe; do echo "Pushing $image" - docker push ${DOCKER_REPOSITORY}/openecomp/policy/$image + docker push ${DOCKER_REPOSITORY}/openecomp/policy/$image:1.0.0-SNAPSHOT done |