diff --git a/Jenkinsfile b/Jenkinsfile index 6663c0c..23b3c5b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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...' + } + } } }