Add ubuntu installer
This commit is contained in:
parent
59962589e6
commit
4223463e18
3 changed files with 14 additions and 1 deletions
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -174,6 +174,7 @@ pipeline {
|
||||||
|
|
||||||
docker build -t git.zontreck.com/ariascreations/yolks:installers_alpine installers/alpine
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_alpine installers/alpine
|
||||||
docker build -t git.zontreck.com/ariascreations/yolks:installers_debian installers/debian
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_debian installers/debian
|
||||||
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_ubuntu installers/ubuntu
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -191,6 +192,7 @@ pipeline {
|
||||||
|
|
||||||
docker push git.zontreck.com/ariascreations/yolks:installers_alpine
|
docker push git.zontreck.com/ariascreations/yolks:installers_alpine
|
||||||
docker push git.zontreck.com/ariascreations/yolks:installers_debian
|
docker push git.zontreck.com/ariascreations/yolks:installers_debian
|
||||||
|
docker push git.zontreck.com/ariascreations/yolks:installers_ubuntu
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
3
build.sh
3
build.sh
|
@ -27,4 +27,5 @@ docker build -t git.zontreck.com/ariascreations/yolks:wine_9.16 wine/9.16
|
||||||
|
|
||||||
# Installers
|
# Installers
|
||||||
docker build -t git.zontreck.com/ariascreations/yolks:installers_alpine installers/alpine
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_alpine installers/alpine
|
||||||
docker build -t git.zontreck.com/ariascreations/yolks:installers_debian installers/debian
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_debian installers/debian
|
||||||
|
docker build -t git.zontreck.com/ariascreations/yolks:installers_ubuntu installers/ubuntu
|
10
installers/ubuntu/Dockerfile
Normal file
10
installers/ubuntu/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
LABEL author="Tara Piccari" maintainer="tarapiccari@gmail.com"
|
||||||
|
LABEL upstream="https://github.com/pelican-eggs/yolks"
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get upgrade -y
|
||||||
|
RUN apt-get install -y ca-certificates curl git unzip zip tar jq wget
|
Loading…
Add table
Add a link
Reference in a new issue