Add debian installer
This commit is contained in:
parent
b43064b5fc
commit
59962589e6
3 changed files with 20 additions and 1 deletions
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -173,6 +173,7 @@ pipeline {
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
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
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -189,6 +190,7 @@ pipeline {
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
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
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
3
build.sh
3
build.sh
|
@ -26,4 +26,5 @@ 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
|
# 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
|
16
installers/debian/Dockerfile
Normal file
16
installers/debian/Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
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
|
||||||
|
|
||||||
|
RUN if [ "$(uname -m)" = "x86_64" ]; then \
|
||||||
|
dpkg --add-architecture i386 && \
|
||||||
|
apt-get update \
|
||||||
|
apt-get install -y lib32gcc-s1 libsdl2-2.0-0:i386; \
|
||||||
|
fi
|
Loading…
Add table
Add a link
Reference in a new issue