fix(Dockerfile): add g++ to build dependencies (miniaudio)

This commit is contained in:
Ivan
2026-04-22 13:09:42 -05:00
parent c4c34ed67a
commit 7bd2123fee
+1 -1
View File
@@ -25,7 +25,7 @@ RUN npm install -g pnpm@10.32.1 && \
FROM ${PYTHON_IMAGE}@${PYTHON_HASH} AS builder
WORKDIR /build
RUN apk upgrade --no-cache && \
apk add --no-cache gcc musl-dev linux-headers python3-dev libffi-dev openssl-dev git
apk add --no-cache gcc g++ musl-dev linux-headers python3-dev libffi-dev openssl-dev git
# Install build tools in the system python
RUN pip install --no-cache-dir --upgrade "pip>=26.0" poetry setuptools wheel "jaraco.context>=6.1.0"