forked from amritsql/node-multiplayer-snake
-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathJenkinsfile
39 lines (31 loc) · 899 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
node ('Ubuntu-app-agent'){
def app
stage('Cloning Git') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
stage('SAST'){
build 'SECURITY-SAST-SNYK'
}
stage('Build-and-Tag') {
/* This builds the actual image; synonymous to
* docker build on the command line */
app = docker.build("amrit96/snake")
}
stage('Post-to-dockerhub') {
docker.withRegistry('https://registry.hub.docker.com', 'training_creds') {
app.push("latest")
}
}
stage('SECURITY-IMAGE-SCANNER'){
build 'SECURITY-IMAGE-SCANNER-AQUAMICROSCANNER'
}
stage('Pull-image-server') {
sh "docker-compose down"
sh "docker-compose up -d"
}
stage('DAST')
{
build 'SECURITY-DAST-OWASP_ZAP'
}
}