Compare commits

..

No commits in common. "e2972fbf382ead8da293bd7d86883ce7f1b4335f" and "828cc82bd5ef3c116cb5b2139ab6f1b492a52010" have entirely different histories.

1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -24,8 +24,8 @@ node("docker && linux && amd64") {
ansiColor { ansiColor {
def image = docker.build( def image = docker.build(
"${dockerNamespace}/${dockerBase}:tomcat${tomcatVersion}-${jreVersion}", "${dockerNamespace}/${dockerBase}:tomcat${tomcatVersion}-jre${jreVersion}",
"--build-arg TOMCAT_VERSION=${tomcatVersion} --build-arg TOMCAT_JRE=${jreVersion} .") "--build-arg TOMCAT_VERSION=${tomcatVersion} --build-arg JRE_VERSION=${jreVersion} .")
} }
def guacamoleVersion def guacamoleVersion
@ -41,7 +41,7 @@ node("docker && linux && amd64") {
} }
} }
def imageTag = "${dockerNamespace}/${dockerBase}:${guacamoleVersion}-tomcat${tomcatVersion}-${jreVersion}" def imageTag = "${dockerNamespace}/${dockerBase}:${guacamoleVersion}-tomcat${tomcatVersion}-jre${jreVersion}"
images << [ image, imageFullName ] images << [ image, imageFullName ]
} }
} }