environment test

This commit is contained in:
crusader 2023-02-01 14:47:00 +00:00
parent 05ecf52a8e
commit 527c821e3e

2
Jenkinsfile vendored
View File

@ -74,7 +74,7 @@ podTemplate(
passwordVariable: 'HARBOR_PASSWORD']]) {
sh """
docker login -u "${HARBOR_USER}" -p "${HARBOR_PASSWORD}" ${docker_registry_url}
docker build -t ${docker_registry_url}/prototype/cicd-java-spring-boot:${gitCommit} -f Dockerfile.arg --build-arg JAR_NAME="cicd-${gitCommit}.jar" .
docker build -t ${docker_registry_url}/prototype/cicd-java-spring-boot:${gitCommit} --build-arg JAR_NAME="cicd-${gitCommit}.jar" .
docker push ${docker_registry_url}/prototype/cicd-java-spring-boot:${gitCommit}
"""
}