blob: d29d43c97769a90a47da5c1cdba35cf7fcdc1875 [file] [log] [blame]
Jerry Floodffab4f72017-05-02 16:00:03 -04001#!/bin/bash
2#
3echo '============== CALLING SCRIPT TO CREATE DOCKER IMAGES ================='
4cp $WORKSPACE/docker/* .
Gary Wu6dc53ad2018-04-04 12:27:38 -07005docker -D build -t onap/testsuite .
Jerry Floodffab4f72017-05-02 16:00:03 -04006export REPO="nexus3.onap.org:10003"
7for tag in $tags
8do
Gary Wu6dc53ad2018-04-04 12:27:38 -07009 docker tag onap/testsuite:latest $REPO/onap/testsuite:$tag
10 docker push $REPO/onap/testsuite:$tag
Jerry Floodffab4f72017-05-02 16:00:03 -040011done