fix: remove g++-multilib (not available on arm64)

This commit is contained in:
Nathan Flurry 2026-01-28 01:27:50 -08:00
parent 5dd8a13845
commit 8a6117cb5f

View file

@ -7,7 +7,7 @@ ARG TARGETARCH
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
# Install dependencies # Install dependencies (g++-multilib not available on arm64)
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
musl-tools \ musl-tools \
musl-dev \ musl-dev \
@ -18,7 +18,6 @@ RUN apt-get update && apt-get install -y \
pkg-config \ pkg-config \
ca-certificates \ ca-certificates \
g++ \ g++ \
g++-multilib \
git \ git \
curl \ curl \
wget && \ wget && \