docker: replace g++ + make with build-essential
Some checks failed
Mirror to Codeberg / mirror (push) Failing after 2s
C++ Tests / test (push) Has started running

build-essential pulls gcc, g++, make and libc-dev together.
CMake declares LANGUAGES C CXX so it needs a C compiler (cc) too –
individual g++ install can leave gaps that build-essential covers.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Tarik Moussa
2026-05-09 23:03:25 +02:00
parent c9c9320907
commit 488223f75d

View File

@@ -9,8 +9,7 @@ RUN apt-get update -qq && \
apt-get install -y --no-install-recommends \
nodejs \
cmake \
make \
g++ \
build-essential \
git \
&& rm -rf /var/lib/apt/lists/*