Files
test-docker/jj
2023-01-23 15:16:40 -06:00

12 lines
147 B
Plaintext

pipeline {
agent none
stages {
stage('Docker Build') {
agent any
steps {
sh 'docker build -t nginx .'
}
}
}
}