JenkinsFile

This commit is contained in:
Marco Santos
2024-09-27 18:40:30 +01:00
parent f88eb65384
commit ba1130b65a
9 changed files with 94 additions and 28 deletions

14
Jenkinsfile vendored Normal file
View File

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