fix(devcontainer): resolve missing packages in bullseye image

remove unavailable apt packages python3-cogapp and clang-format-18
keep clang-format from apt
install cogapp with pip for distro-independent availability
preserve existing tool/version verification steps
This commit is contained in:
Murat Kilivan 2026-07-21 16:38:12 +01:00
parent c1cab856a8
commit 51af39f0cd

View File

@ -36,13 +36,12 @@ RUN set -eux \
&& apt-get -y install --no-install-recommends \
python3-full \
python3-pip \
python3-cogapp \
git \
wget \
cmake \
clang-format \
clang-format-18 \
lcov \
&& python3 -m pip install --no-cache-dir cogapp \
&& rm -rf /var/lib/apt/lists/*
RUN set -eux; \