Files
docs/Jenkinsfile
2023-06-02 18:48:20 -04:00

12 lines
208 B
Groovy

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