-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
33 lines (28 loc) · 871 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
node {
def app
stage('Clone repository') {
checkout scm
}
stage('Test and Build image') {
app = docker.build("eschudt/jwt-auth")
}
stage('Integration Test') {
app.inside {
sh 'echo "Tests passed"'
}
}
stage('Push image') {
/* Finally, we'll push the image with two tags:
* First, the incremental build number from Jenkins
* Second, the 'latest' tag.
* Pushing multiple tags is cheap, as all the layers are reused. */
docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') {
app.push("${env.BUILD_NUMBER}")
app.push("latest")
}
}
stage('Deploy - Dev') {
sh "/root/deploy.sh /root/public_server.txt jwt-auth ${env.BUILD_NUMBER} 2"
sh 'echo "Deployed to Dev"'
}
}