Another attempt at Jenkins

This commit is contained in:
Amber McCloughan 2022-08-31 23:32:10 -04:00
parent a4f92773cf
commit d431990609
1 changed files with 5 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -1,6 +1,10 @@
pipeline {
agent 'python:3.10-slim-bullseye'
agent {
docker {
image 'python:3.10-slim-bullseye'
}
}
stages {
stage('Setup') {