22 lines
529 B
Groovy
22 lines
529 B
Groovy
pipeline {
|
|
agent {
|
|
dockerContainer {
|
|
image 'ubuntu:22.04'
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage('Clone') {
|
|
steps {
|
|
git branch: 'main',
|
|
//credentialsId: '9174b603-02b6-46bd-970d-64569bab977a',
|
|
url: 'https://github.com/buddy-works/laravel-first-steps.git'
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
sh 'docker build . -t dockerfile'
|
|
}
|
|
}
|
|
}
|
|
} |