Merge pull request #15 from livekit-examples/bcherry/gpp

Add g++ to dockerfile
This commit is contained in:
Ben Cherry
2025-08-19 19:15:33 -04:00
committed by GitHub
+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/*