mirror of
https://gitlab.com/djdietrick/docs
synced 2026-07-02 01:11:07 -04:00
12 lines
208 B
Groovy
12 lines
208 B
Groovy
pipeline {
|
|
agent {
|
|
docker { image 'docker:dind' }
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'docker build -t docs:latest .'
|
|
}
|
|
}
|
|
}
|
|
} |