new file: Dockerfile
new file: Jenkinsfile new file: alpine-minirootfs-3.10.5-x86_64.tar.gz Initial commit of 3.10.5
This commit is contained in:
parent
c19b698a2f
commit
29b09821fd
5
Dockerfile
Normal file
5
Dockerfile
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
FROM scratch
|
||||||
|
LABEL maintainer "Jonathan Ervine <docker@ervine.org>" architecture="x86_64" alpineversion="3.10.5" build="08052020"
|
||||||
|
|
||||||
|
ADD alpine-minirootfs-3.10.5-x86_64.tar.gz /
|
||||||
|
CMD ["/bin/sh"]
|
||||||
19
Jenkinsfile
vendored
Normal file
19
Jenkinsfile
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
node("docker-node") {
|
||||||
|
docker.withRegistry('https://harbor.ervine.dev', 'jenkins-to-harbor') {
|
||||||
|
|
||||||
|
git branch: "3.10", url: "ssh://git@git.ervine.org:2222/jonny/x86_64-alpine", credentialsId: 'jenkins-to-gogs'
|
||||||
|
|
||||||
|
sh "git rev-parse HEAD > .git/commit-id"
|
||||||
|
def commit_id = readFile('.git/commit-id').trim()
|
||||||
|
println commit_id
|
||||||
|
|
||||||
|
stage "build"
|
||||||
|
def app = docker.build "library/x86_64/alpine/alpine-3.10"
|
||||||
|
|
||||||
|
stage "publish"
|
||||||
|
app.push("${env.BUILD_NUMBER}")
|
||||||
|
app.push("latest")
|
||||||
|
app.push("3.10")
|
||||||
|
app.push("3.10.5")
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
alpine-minirootfs-3.10.5-x86_64.tar.gz
Normal file
BIN
alpine-minirootfs-3.10.5-x86_64.tar.gz
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user