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
# Install dependencies
# Install dependencies (g++-multilib not available on arm64)
RUN apt-get update && apt-get install -y \
musl-tools \
musl-dev \
@ -18,7 +18,6 @@ RUN apt-get update && apt-get install -y \
pkg-config \
ca-certificates \
g++ \
g++-multilib \
git \
curl \
wget && \