From 7bd2123fee3c87bb80db3a2561c779085d2c27c4 Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 22 Apr 2026 13:09:42 -0500 Subject: [PATCH] fix(Dockerfile): add g++ to build dependencies (miniaudio) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5866d06..045fd73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"