16 lines
No EOL
454 B
Docker
16 lines
No EOL
454 B
Docker
FROM debian: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 |