Fixed maintainer label syntax

This commit is contained in:
Jonathan Ervine 2020-07-27 09:01:17 +08:00
parent 980c4c6067
commit 70bcaf7a4e
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Base on latest (edge) alpine image # Base on latest (edge) alpine image
FROM harbor.ervine.dev/public/x86_64/alpine/alpine:v3.12 FROM harbor.ervine.dev/public/x86_64/alpine/alpine:v3.12
LABEL Maintainer=“Jonathan Ervine <docker@ervine.org>" LABEL maintainer="Jonathan Ervine <docker@ervine.org>"
# Install updates # Install updates
ENV LANG='en_US.UTF-8' \ ENV LANG='en_US.UTF-8' \

2
Jenkinsfile vendored
View File

@ -27,7 +27,7 @@ spec:
stage('Build with Kaniko') { stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-sonarr.git', credentialsId: 'jenkins-to-git' git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-sonarr.git', credentialsId: 'jenkins-to-git'
container('kaniko') { container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/library/x86_64/alpine/sonarr:2.0.0.5344 --destination=harbor.ervine.dev/library/x86_64/alpine/sonarr:2 --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:2.0.0.5344 --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:2' sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/library/x86_64/alpine/sonarr:2.0.0.5344 --destination=harbor.ervine.dev/library/x86_64/alpine/sonarr:2 --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:v2.0.0.5344 --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:v2'
} }
} }
} }