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