Test build with jenkins

This commit is contained in:
2023-06-02 18:48:20 -04:00
parent ca5b9bae45
commit be3ed23d38

6
Jenkinsfile vendored
View File

@@ -1,9 +1,11 @@
pipeline { pipeline {
agent any agent {
docker { image 'docker:dind' }
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
echo 'Building' sh 'docker build -t docs:latest .'
} }
} }
} }