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

27
Jenkinsfile vendored
View File

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