2020-12-07 21:01:57 +01:00
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Matthew Penner
|
|
|
|
#
|
|
|
|
# This repository is licensed under the MIT License.
|
|
|
|
# https://github.com/matthewpi/images/blob/master/LICENSE.md
|
|
|
|
#
|
|
|
|
|
2020-12-15 18:45:00 +01:00
|
|
|
FROM --platform=$BUILDPLATFORM debian:stable-slim
|
2020-12-07 21:01:57 +01:00
|
|
|
|
|
|
|
LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io"
|
|
|
|
|
2020-12-15 18:25:15 +01:00
|
|
|
LABEL org.opencontainers.image.source="https://github.com/matthewpi/images"
|
|
|
|
LABEL org.opencontainers.image.licenses=MIT
|
|
|
|
|
2020-12-07 21:01:57 +01:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
RUN dpkg --add-architecture i386 \
|
|
|
|
&& apt update \
|
|
|
|
&& apt upgrade -y \
|
2020-12-29 03:32:58 +01:00
|
|
|
&& apt -y --no-install-recommends install ca-certificates curl lib32gcc1 libsdl2-2.0-0:i386 git
|