Fixed typo, pushed to public repo

This commit is contained in:
Jonathan Ervine 2020-07-27 16:38:38 +08:00
parent d679b0176b
commit 238c252349
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# Base on latest (edge) alpine image
FROM harbor.ervine.dev/library/x86_64/alpine/alpine:3.12
FROM harbor.ervine.dev/public/x86_64/alpine/alpine:v3.12
MAINTAINER “Jonathan Ervine” <docker@ervine.org>
@ -7,7 +7,7 @@ MAINTAINER “Jonathan Ervine” <docker@ervine.org>
ENV LANG='en_US.UTF-8' \
LANGUAGE='en_US.UTF-8' \
TERM='xterm' \
VERSION='develop' \
VERSION='develop'
RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \
apk -U update && \

2
Jenkinsfile vendored
View File

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