Files
docs/Jenkinsfile

10 lines
165 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'docker build -t docs:latest .'
}
}
}
}