Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dockerpackage #148

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Added Jenkinsfile
  • Loading branch information
ankitpangasa committed Apr 21, 2022
commit 88c3e3d29ba850e2445147cb99c07b96c4ca6ac2
8 changes: 7 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
pipeline {
agent any
agent {
docker {
image 'maven:3.6.3-jdk-11-slim'
args 'using docker agent'
}

}
stages {
stage('build') {
steps {
Expand Down