Compare commits

...

32 Commits
3.12 ... master

Author SHA1 Message Date
f95a0021d5 'update files with ansible' 2022-09-01 11:54:25 +00:00
c047547052 'update files with ansible' 2022-05-26 14:47:06 +00:00
62deb8edd9 'update files with ansible' 2022-01-29 14:00:41 +00:00
bacb41a394 'update files with ansible' 2022-01-29 13:58:13 +00:00
65db067c64 'update files with ansible' 2022-01-29 13:55:11 +00:00
5f64da0608 'update files with ansible' 2022-01-09 08:49:53 +00:00
befc4eeb05 'update files with ansible' 2022-01-08 14:34:23 +00:00
7a3d46e03f 'update files with ansible' 2021-08-05 00:20:14 +00:00
83542c17f1 'update files with ansible' 2021-06-04 02:01:08 +00:00
7a2291b6b9 'update files with ansible' 2021-05-17 13:34:16 +00:00
c0a529f23d 'update files with ansible' 2021-04-12 14:10:51 +00:00
7ca3ff398f 'update files with ansible' 2021-03-31 03:25:28 +00:00
3de7cabf78 'update files with ansible' 2021-03-31 03:05:49 +00:00
47f856be04 'update files with ansible' 2021-03-30 12:11:32 +00:00
a0272f81a9 'update files with ansible' 2021-03-11 15:33:29 +00:00
53129e0833 'update files with ansible' 2021-03-11 15:31:35 +00:00
60d3d05c4f 'update files with ansible' 2021-03-09 15:16:55 +00:00
3ec9cff98d 'update files with ansible' 2021-03-09 15:14:38 +00:00
fa74d405ad 'update files with ansible' 2021-03-09 15:09:00 +00:00
222ab4a6f3 Merge pull request 'Bumped to 3.13.0' (#3) from 3.13.0 into master
Reviewed-on: #3
2021-01-20 12:31:38 +00:00
Jonathan Ervine
6364ded993 Bumped to 3.13.0 2021-01-20 20:24:35 +08:00
Jonathan Ervine
c49c7e6d56 Bumped to Alpine Linux 3.12.3 2021-01-13 22:40:19 +08:00
fd3331a78b Merge pull request '3.12.1' (#2) from 3.12.1 into master
Reviewed-on: #2
2020-11-10 05:48:57 +00:00
Jonathan Ervine
60f8992bc9 Build Alpine Linux 3.12.1 2020-11-10 13:47:03 +08:00
Jonathan Ervine
3916ff08f4 Added GChat message 2020-08-12 17:00:10 +08:00
Jonathan Ervine
9522eb01b8 Added public repo destination 2020-07-26 21:47:00 +08:00
Jonathan Ervine
0cee30513e Fixed harbor URL 2020-07-20 14:51:04 +08:00
Jonathan Ervine
e8021842ab Fixed typo 2020-07-20 14:49:05 +08:00
Jonathan Ervine
c83657c8f1 Using node builder 2020-07-20 14:47:49 +08:00
Jonathan Ervine
9ff4cee802 Fixed image name 2020-07-07 23:17:18 +08:00
Jonathan Ervine
93115f70b7 Fixed typo 2020-07-06 23:16:29 +08:00
34a8ecd445 Merge pull request '3.12' (#1) from 3.12 into master
Reviewed-on: #1
2020-07-06 15:08:02 +00:00
20 changed files with 38 additions and 18 deletions

View File

@ -1,5 +1,5 @@
FROM scratch FROM scratch
LABEL maintainer "Jonathan Ervine <docker@ervine.org>" architecture="x86_64" alpineversion="3.12.0" build="06072020" LABEL maintainer "Jonathan Ervine <docker@ervine.org>" architecture="x86_64" alpineversion="3.16.2" build="10022021"
ADD alpine-minirootfs-3.12.0-x86_64.tar.gz / ADD alpine-minirootfs-3.16.2-x86_64.tar.gz /
CMD ["/bin/sh"] CMD ["/bin/sh"]

52
Jenkinsfile vendored
View File

@ -1,18 +1,38 @@
node("docker-node") { podTemplate(yaml: """
docker.withRegistry('https://harbor.ervine.dev', 'jenkins-to-harbor') { kind: Pod
spec:
git branch: "3.12", url: "ssh://git@git.ervine.org/jonny/x86_64-alpine", credentialsId: 'jenkins-to-git' containers:
- name: kaniko
sh "git rev-parse HEAD > .git/commit-id" image: "gcr.io/kaniko-project/executor:debug"
def commit_id = readFile('.git/commit-id').trim() imagePullPolicy: Always
println commit_id command:
- /busybox/cat
stage "build" tty: true
def app = docker.build "library/x86_64/alpine/alpine-3.10" volumeMounts:
- name: jenkins-docker-cfg
stage "publish" mountPath: /kaniko/.docker
app.push("${env.BUILD_NUMBER}") volumes:
app.push("latest") - name: jenkins-docker-cfg
app.push("3.12") projected:
sources:
- secret:
name: regcred
items:
- key: .dockerconfigjson
path: config.json
"""
) {
node(POD_LABEL) {
stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine.git', credentialsId: 'jenkins2git'
container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine:v3.16.2 --destination=harbor.ervine.dev/public/x86_64/alpine:v3.16'
}
} }
stage('Notify gchat') {
hangoutsNotify message: "Alpine Linux 3.16.2 has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
}
}
} }

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.