aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.sh b/build.sh
index 4a6d68a61..e4d9b6af4 100644
--- a/build.sh
+++ b/build.sh
@@ -9,16 +9,16 @@ docker/healthcheck \
docker/smoke \
docker/features \
docker/components \
-docker/vnf \
+docker/vnf \
docker/parser \
docker/restapi"
(cd docker && docker build -t "${repo}/functest" .)
-docker push "${repo}/functest"
+docker push "${repo}/functest:euphrates"
for dir in ${dirs}; do
- (cd ${dir} && docker build -t "${repo}/functest-${dir##**/}" .)
- docker push "${repo}/functest-${dir##**/}"
+ (cd ${dir} && docker build -t "${repo}/functest-${dir##**/}:euphrates" .)
+ docker push "${repo}/functest-${dir##**/}:euphrates"
done
exit $?