This commit is contained in:
Marco Santos
2024-09-27 19:11:48 +01:00
parent ba1130b65a
commit 1e0a11bff4

11
Jenkinsfile vendored
View File

@@ -1,14 +1,15 @@
pipeline { pipeline {
agent { agent any
dockerfile {
filename 'Dockerfile' // Nome do Dockerfile (se for diferente, modifique aqui)
}
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
echo 'Construindo o projeto...' echo 'Construindo o projeto...'
} }
} }
stage('Deploys') {
steps {
echo 'DEploy o projeto...'
}
}
} }
} }