File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,14 @@ FROM mcr.microsoft.com/devcontainers/cpp:ubuntu-24.04
55
66RUN apt-get update \
77 && apt-get upgrade --yes \
8- && apt-get install --yes --no-install-recommends adr-tools clang-format clang-tidy cppcheck gcc-14 g++-14 iwyu lcov pre-commit \
8+ && apt-get install --yes --no-install-recommends adr-tools clang-format clang-tidy cppcheck gcc-14 g++-14 iwyu lcov pipx pre-commit \
99 && apt-get clean \
1010 && rm -rf /var/lib/apt/lists/*
1111
12+ # Ensure pipx is in PATH
13+
14+ RUN pipx ensurepath
15+
1216# Choose default gcc and g++ version
1317
1418RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 \
Original file line number Diff line number Diff line change 22
33echo " Installing pre-commit hooks"
44pre-commit install --install-hooks
5+
6+ echo " Installing conan"
7+ pipx install conan
You can’t perform that action at this time.
0 commit comments