Add push of latest dev docker image tag to push target

This commit is contained in:
Maxime Dor
2017-09-18 02:29:58 +02:00
parent 00896ab280
commit 3b7e5e9fd9

View File

@@ -236,4 +236,10 @@ task dockerBuild(type: Exec, dependsOn: build) {
task dockerPush(type: Exec) {
commandLine 'docker', 'push', dockerImageTag
doLast {
exec {
commandLine 'docker', 'push', "${dockerImageName}:latest-dev"
}
}
}