docker: replace g++ + make with build-essential
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:
@@ -9,8 +9,7 @@ RUN apt-get update -qq && \
|
|||||||
apt-get install -y --no-install-recommends \
|
apt-get install -y --no-install-recommends \
|
||||||
nodejs \
|
nodejs \
|
||||||
cmake \
|
cmake \
|
||||||
make \
|
build-essential \
|
||||||
g++ \
|
|
||||||
git \
|
git \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user