mirror of
https://gitlab.com/djdietrick/docs
synced 2026-05-03 01:30:55 -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 .'
|
|
}
|
|
}
|
|
}
|
|
} |