We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1aa975 commit 2d69f28Copy full SHA for 2d69f28
Jenkinsfile
@@ -5,9 +5,9 @@ pipeline {
5
}
6
agent any
7
environment {
8
- IMAGE_NAME = nginx-proxy-manager
9
- TEMP_IMAGE_NAME = nginx-proxy-manager-build_${BUILD_NUMBER}
10
- }
+ IMAGE_NAME = "nginx-proxy-manager"
+ TEMP_IMAGE_NAME = "nginx-proxy-manager-build_${BUILD_NUMBER}"
+ }
11
stages {
12
stage('Prepare') {
13
steps {
@@ -37,9 +37,9 @@ node-prune'''
37
38
39
stage('Build') {
40
- steps {
41
- def TAG_VERSION = getPackageVersion()
+ def TAG_VERSION = getPackageVersion()
42
+ steps {
43
sh '''docker build -t $TEMP_IMAGE_NAME .
44
exit $?'''
45
0 commit comments