This commit is contained in:
Marco Santos
2024-09-27 19:35:22 +01:00
parent 1e0a11bff4
commit 718ba1b350

13
Jenkinsfile vendored
View File

@@ -1,5 +1,13 @@
pipeline { node {
agent any stage('Checkout') {
checkout scm
}
pipeline {
agent {
dockerfile {
filename 'Dockerfile' // Nome do Dockerfile (se for diferente, modifique aqui)
}
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
@@ -12,4 +20,5 @@ pipeline {
} }
} }
} }
}
} }