| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:3f78aa860931e0853077f09eb31eddbeeef8a9dd70977305b4876aa176770721 in / |
| CMD ["/bin/bash"] |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends software-properties-common gpg-agent && add-apt-repository -y ppa:ubuntu-toolchain-r/test && apt-get update && apt-get install -y --no-install-recommends build-essential g++-15 cmake ninja-build git curl ca-certificates python3 python3-dev nodejs && rm -rf /var/lib/apt/lists/* # buildkit |
| COPY /uv /usr/local/bin/uv # buildkit |
| RUN /bin/sh -c update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-15 100 && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-15 100 && update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-15 100 && update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-15 100 # buildkit |
| ENV CC=gcc-15 |
| ENV CXX=g++-15 |