This commit is contained in:
Marco Santos
2024-11-27 14:06:45 +00:00
parent 269404edc8
commit 9c00044f78

8
Jenkinsfile vendored
View File

@@ -86,11 +86,9 @@ pipeline {
stage('Build WS Docker Image') { stage('Build WS Docker Image') {
steps { steps {
dir("${env.API_DIR}") { // Construir a imagem Docker do Backend usando o Dockerfile existente
// Construir a imagem Docker do Backend usando o Dockerfile existente script {
script { docker.build("${API_DOCKER_IMAGE}", ".")
docker.build("${API_DOCKER_IMAGE}", "..")
}
} }
} }
} }