| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:8ce1caf246e7c778bca84c516d02fd4e83766bb2c530a0fffa8a351b560a2728 in / |
| CMD ["/bin/bash"] |
| ENV TZ=Europe/Paris DEBIAN_FRONTEND=noninteractive PATH=/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| RUN /bin/sh -c # buildkit |
| RUN /bin/sh -c echo '#!/bin/bash\n$@' > /usr/bin/sudo && chmod +x /usr/bin/sudo # buildkit |
| RUN /bin/sh -c apt-get update && apt-get install -y unzip curl wget lsb-release software-properties-common gnupg python3 # buildkit |
| RUN /bin/sh -c apt-get update && apt-get install -y build-essential cppcheck ccache cmake ninja-build git pkg-config wget lsb-release software-properties-common pipx # buildkit |
| ENV PATH=/root/.local/bin:/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| RUN /bin/sh -c wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh && chmod +x /tmp/llvm.sh && /tmp/llvm.sh 22 all && for f in /usr/lib/llvm-22/bin/*; do ln -sf "$f" "/usr/local/bin/$(basename "$f")"; done && rm -f /tmp/llvm.sh* # buildkit |
| RUN /bin/sh -c VERSION=1.2.0; curl -sSL "https://github.com/facebook/infer/releases/download/v$VERSION/infer-linux-x86_64-v$VERSION.tar.xz" | tar -C /opt -xJ && ln -s "/opt/infer-linux-x86_64-v$VERSION/bin/infer" /usr/bin/infer # buildkit |
| RUN /bin/sh -c pipx install conan && pipx install gcovr # buildkit |
| RUN /bin/sh -c git clone --branch v2.41.0 https://github.com/rui314/mold.git /tmp/mold && cd /tmp/mold && cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++ -B build && cmake --build build -j$(nproc) && cmake --install build && rm -rf /tmp/mold # buildkit |
| RUN /bin/sh -c conan config install https://git.romainboullard.com/BigfootDev/ConanProfiles.git --args="--branch main" && conan remote add bigfootpackages https://conan.romainboullard.com/artifactory/api/conan/BigfootPackages && conan remote disable conancenter # buildkit |
| RUN /bin/sh -c wget -q https://sdk.lunarg.com/sdk/download/1.4.341.0/linux/vulkansdk-linux-x86_64-1.4.341.0.tar.xz -O /tmp/vulkansdk.tar.xz && mkdir -p /opt/vulkan && tar -xf /tmp/vulkansdk.tar.xz -C /opt/vulkan && rm /tmp/vulkansdk.tar.xz # buildkit |
| ENV VULKAN_SDK=/opt/vulkan/1.4.341.0/x86_64 |
| ENV PATH=/opt/vulkan/1.4.341.0/x86_64/bin:/root/.local/bin:/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| ENV LD_LIBRARY_PATH=/opt/vulkan/1.4.341.0/x86_64/lib: |
| ENV VK_LAYER_PATH=/opt/vulkan/1.4.341.0/x86_64/share/vulkan/explicit_layer.d |
| ENV VK_ADD_LAYER_PATH=/opt/vulkan/1.4.341.0/x86_64/share/vulkan/explicit_layer.d |
| ENV PKG_CONFIG_PATH=/opt/vulkan/1.4.341.0/x86_64/lib/pkgconfig/: |