blob: d1943ba7c9938bb5744bc051806b35b1d0bf4881 [file] [log] [blame]
Pamela Dragosh6ee398d2017-02-20 15:30:52 -05001#!/bin/bash
2#
3echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES ================='
4
5
6DOCKER_REPOSITORY=nexus3.openecomp.org:10003
7
8for image in policy-os policy-nexus policy-db policy-base policy-drools policy-pe ; do
9 echo "Building $image"
10 mkdir -p target/$image
11 cp $image/* target/$image
12done