Add debian installer
This commit is contained in:
parent
b43064b5fc
commit
59962589e6
3 changed files with 20 additions and 1 deletions
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