From 0f40af66176af7380eccf24b9d03f0921753fe67 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 19 Oct 2021 21:33:38 +0300 Subject: [PATCH] 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. --- installers/debian/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installers/debian/Dockerfile b/installers/debian/Dockerfile index 0593523..cf6bde9 100644 --- a/installers/debian/Dockerfile +++ b/installers/debian/Dockerfile @@ -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