Add g++ to dockerfile

This commit is contained in:
Ben Cherry
2025-08-19 12:49:18 -07:00
parent 494b1e2a43
commit 75965f250b
+1
View File
@@ -27,6 +27,7 @@ RUN adduser \
# We clean up the apt cache after installation to keep the image size down
RUN apt-get update && apt-get install -y \
gcc \
g++ \
python3-dev \
&& rm -rf /var/lib/apt/lists/*