Add alpine installer
This commit is contained in:
parent
f557e20cae
commit
b43064b5fc
3 changed files with 42 additions and 1 deletions
32
Jenkinsfile
vendored
32
Jenkinsfile
vendored
|
@ -162,6 +162,38 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage("Build Installers") {
|
||||||
|
agent {
|
||||||
|
label 'dockermain'
|
||||||
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
sh '''
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_alpine installers/alpine
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage("Push Installers") {
|
||||||
|
agent {
|
||||||
|
label 'dockermain'
|
||||||
|
}
|
||||||
|
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
sh '''
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
docker push git.zontreck.com/ariascreations/yolks:installers_alpine
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage("Cleanup") {
|
stage("Cleanup") {
|
||||||
agent {
|
agent {
|
||||||
label 'dockermain'
|
label 'dockermain'
|
||||||
|
|
3
build.sh
3
build.sh
|
@ -24,3 +24,6 @@ docker build -t git.zontreck.com/ariascreations/yolks:wine_8.0 wine/8.0
|
||||||
docker build -t git.zontreck.com/ariascreations/yolks:wine_8.21 wine/8.21
|
docker build -t git.zontreck.com/ariascreations/yolks:wine_8.21 wine/8.21
|
||||||
docker build -t git.zontreck.com/ariascreations/yolks:wine_9.0 wine/9.0
|
docker build -t git.zontreck.com/ariascreations/yolks:wine_9.0 wine/9.0
|
||||||
docker build -t git.zontreck.com/ariascreations/yolks:wine_9.16 wine/9.16
|
docker build -t git.zontreck.com/ariascreations/yolks:wine_9.16 wine/9.16
|
||||||
|
|
||||||
|
# Installers
|
||||||
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_alpine installers/alpine
|
6
installers/alpine/Dockerfile
Normal file
6
installers/alpine/Dockerfile
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
LABEL author="Tara Piccari" maintainer="tarapiccari@gmail.com"
|
||||||
|
LABEL upstream="https://github.com/pelican-eggs/yolks"
|
||||||
|
|
||||||
|
RUN apk add --update --no-cache ca-certificates curl unzip tar git jq wget zip
|
Loading…
Add table
Add a link
Reference in a new issue