This commit is contained in:
Marco Santos
2024-09-27 19:56:12 +01:00
parent 718ba1b350
commit 43ada42603

10
Jenkinsfile vendored
View File

@@ -1,14 +1,13 @@
node { pipeline {
stage('Checkout') {
checkout scm
}
pipeline {
agent { agent {
dockerfile { dockerfile {
filename 'Dockerfile' // Nome do Dockerfile (se for diferente, modifique aqui) filename 'Dockerfile' // Nome do Dockerfile (se for diferente, modifique aqui)
} }
} }
stages { stages {
stage('Checkout') {
checkout scm
}
stage('Build') { stage('Build') {
steps { steps {
echo 'Construindo o projeto...' echo 'Construindo o projeto...'
@@ -20,5 +19,4 @@ node {
} }
} }
} }
}
} }