create Docker images only with development version as tag

This commit is contained in:
Thomas Peetz
2025-04-29 14:43:07 +02:00
parent 4c96de27db
commit bbf422cc5d
3 changed files with 6 additions and 9 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ bootRun {
task dockerImage(type: Exec) {
dependsOn(bootJar)
commandLine "docker", "build", ".", "-t", "kontor:${project.version}", "-t", "kontor"
commandLine "docker", "build", ".", "-t", "kontor:${project.version}"
}
vaadin {