summaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.sh b/build.sh
index 18d2e58de..e4d9b6af4 100644
--- a/build.sh
+++ b/build.sh
@@ -14,11 +14,11 @@ 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 $?