Skip to content

Commit

Permalink
added Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
alecsadam75 committed Aug 7, 2023
1 parent e792293 commit 74cf16f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Jenkinsfile (Declarative Pipeline)
/* Requires the Docker Pipeline plugin */
pipeline {
agent { docker { image 'python:3.11.4-alpine3.18' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}

0 comments on commit 74cf16f

Please sign in to comment.