@@ -19,7 +19,6 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
1919RUN --mount=type=bind,source=.devcontainer/cpp/apt-requirements-base.json,target=/tmp/apt-requirements-base.json \
2020 apt-get update && apt-get install -y --no-install-recommends jq \
2121 && jq -r 'to_entries | .[] | .key + "=" + .value' /tmp/apt-requirements-base.json | xargs apt-get install -y --no-install-recommends \
22- && rm /tmp/apt-requirements-base.json \
2322 && rm -rf /var/lib/apt/lists/*
2423
2524# Include the Cisco Umbrella PKI Root
@@ -28,8 +27,7 @@ RUN wget -qO /usr/local/share/ca-certificates/Cisco_Umbrella_Root_CA.crt https:/
2827
2928# Install some tools via pip to get more recent versions
3029RUN --mount=type=bind,source=.devcontainer/cpp/requirements.txt,target=/tmp/requirements.txt \
31- python3 -m pip install --break-system-packages --require-hashes --no-cache-dir -r /tmp/requirements.txt \
32- && rm -rf /tmp/requirements.txt
30+ python3 -m pip install --break-system-packages --require-hashes --no-cache-dir -r /tmp/requirements.txt
3331
3432# Set default environment options for CMake and ccache
3533ENV CCACHE_DIR=/cache/.ccache
@@ -49,7 +47,6 @@ RUN --mount=type=bind,source=.devcontainer/cpp/apt-requirements-clang.json,targe
4947 && echo -e 'Package: *\n Pin: origin "apt.llvm.org"\n Pin-Priority: 1000' > /etc/apt/preferences \
5048 && apt-get update \
5149 && jq -r 'to_entries | .[] | .key + "=" + .value' /tmp/apt-requirements-clang.json | xargs apt-get install -y --no-install-recommends \
52- && rm /tmp/apt-requirements* \
5350 && rm -rf /var/lib/apt/lists/*
5451ENV PATH="$PATH:/usr/lib/llvm-${CLANG_VERSION}/bin"
5552
0 commit comments