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

11
Jenkinsfile vendored
View File

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