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:
parent
9dc5d450b0
commit
0f40af6617
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@
|
||||||
# SOFTWARE.
|
# SOFTWARE.
|
||||||
#
|
#
|
||||||
|
|
||||||
FROM --platform=$TARGETOS/$TARGETARCH debian:stable-slim
|
FROM --platform=$TARGETOS/$TARGETARCH debian:bullseye-slim
|
||||||
|
|
||||||
LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io"
|
LABEL author="Matthew Penner" maintainer="matthew@pterodactyl.io"
|
||||||
|
|
||||||
|
@ -32,4 +32,4 @@ ENV DEBIAN_FRONTEND=noninteractive
|
||||||
RUN dpkg --add-architecture i386 \
|
RUN dpkg --add-architecture i386 \
|
||||||
&& apt update \
|
&& apt update \
|
||||||
&& apt upgrade -y \
|
&& 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
|
||||||
|
|
Loading…
Reference in a new issue