Jenkins
This commit is contained in:
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
@@ -1,5 +1,13 @@
|
||||
pipeline {
|
||||
agent any
|
||||
node {
|
||||
stage('Checkout') {
|
||||
checkout scm
|
||||
}
|
||||
pipeline {
|
||||
agent {
|
||||
dockerfile {
|
||||
filename 'Dockerfile' // Nome do Dockerfile (se for diferente, modifique aqui)
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
@@ -12,4 +20,5 @@ pipeline {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user