Pamela Dragosh | 6ee398d | 2017-02-20 15:30:52 -0500 | [diff] [blame] | 1 | #!/bin/bash |
2 | # | ||||
3 | echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES =================' | ||||
4 | |||||
5 | |||||
6 | DOCKER_REPOSITORY=nexus3.openecomp.org:10003 | ||||
7 | |||||
8 | for 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 | ||||
12 | done |