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 {
agent {
dockerfile {
filename 'Dockerfile' // Nome do Dockerfile (se for diferente, modifique aqui)
}
}
agent any
stages {
stage('Build') {
steps {
echo 'Construindo o projeto...'
}
}
stage('Deploys') {
steps {
echo 'DEploy o projeto...'
}
}
}
}