mirror of
https://gitlab.com/djdietrick/docs
synced 2026-05-02 23:20:53 -04:00
10 lines
165 B
Groovy
10 lines
165 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'docker build -t docs:latest .'
|
|
}
|
|
}
|
|
}
|
|
} |