Add alpine installer

This commit is contained in:
zontreck 2024-09-04 18:34:15 -07:00
parent f557e20cae
commit b43064b5fc
3 changed files with 42 additions and 1 deletions

32
Jenkinsfile vendored
View file

@ -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") {
agent {
label 'dockermain'

View file

@ -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_9.0 wine/9.0
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

View 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