fix: debian-installer build for ARM64

lib32gcc is an amd64-only package. Eggs can install it in the install script if they need it.

Specify bullseye to prevent unexpected package surprises, and install wget.
This commit is contained in:
Alex 2021-10-19 21:33:38 +03:00
parent 9dc5d450b0
commit 0f40af6617
No known key found for this signature in database
GPG key ID: C6172741CCF116A1

View file

@ -20,7 +20,7 @@
# SOFTWARE.
#
FROM --platform=$TARGETOS/$TARGETARCH debian:stable-slim
FROM --platform=$TARGETOS/$TARGETARCH debian:bullseye-slim
LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io"
@ -32,4 +32,4 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN dpkg --add-architecture i386 \
&& apt update \
&& apt upgrade -y \
&& apt -y --no-install-recommends install ca-certificates curl lib32gcc-s1 libsdl2-2.0-0:i386 git
&& apt -y --no-install-recommends install ca-certificates curl libsdl2-2.0-0:i386 git wget