28 lines
1.1 KiB
Docker
28 lines
1.1 KiB
Docker
#
|
|
# Copyright (c) 2020 Matthew Penner
|
|
#
|
|
# This repository is licensed under the MIT License.
|
|
# https://github.com/matthewpi/images/blob/master/LICENSE.md
|
|
#
|
|
|
|
FROM --platform=$BUILDPLATFORM debian:stable-slim
|
|
|
|
LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/matthewpi/images"
|
|
LABEL org.opencontainers.image.licenses=MIT
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN dpkg --add-architecture i386 \
|
|
&& apt update \
|
|
&& apt upgrade -y \
|
|
&& apt install -y tar curl gcc g++ lib32gcc1 libgcc1 libcurl4-gnutls-dev:i386 libssl1.1:i386 libcurl4:i386 lib32tinfo6 libtinfo6:i386 lib32z1 lib32stdc++6 libncurses5:i386 libcurl3-gnutls:i386 libsdl2-2.0-0:i386 iproute2 gdb libsdl1.2debian libfontconfig telnet net-tools netcat tzdata \
|
|
&& useradd -m -d /home/container container
|
|
|
|
USER container
|
|
ENV USER=container HOME=/home/container
|
|
WORKDIR /home/container
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
CMD [ "/bin/bash", "/entrypoint.sh" ]
|