| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:0f6466425c4f1800aae9224ddc3437b90c829cea58fb8edd5dde2f1eb0ee28da in / |
| CMD ["/bin/bash"] |
| ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl git jq openssh-client unzip && rm -rf /var/lib/apt/lists/* # buildkit |
| ARG DOCKER_VERSION=27.5.1 |
| RUN |1 DOCKER_VERSION=27.5.1 /bin/sh -c curl -fsSL "https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz" | tar xz --strip-components=1 -C /usr/local/bin docker/docker # buildkit |
| ARG BUILDX_VERSION=0.21.2 |
| RUN |2 DOCKER_VERSION=27.5.1 BUILDX_VERSION=0.21.2 /bin/sh -c mkdir -p /usr/local/lib/docker/cli-plugins && curl -fsSL "https://github.com/docker/buildx/releases/download/v${BUILDX_VERSION}/buildx-v${BUILDX_VERSION}.linux-amd64" -o /usr/local/lib/docker/cli-plugins/docker-buildx && chmod +x /usr/local/lib/docker/cli-plugins/docker-buildx # buildkit |
| ARG COMPOSE_VERSION=2.32.4 |
| RUN |3 DOCKER_VERSION=27.5.1 BUILDX_VERSION=0.21.2 COMPOSE_VERSION=2.32.4 /bin/sh -c mkdir -p /usr/local/lib/docker/cli-plugins && curl -fsSL "https://github.com/docker/compose/releases/download/v${COMPOSE_VERSION}/docker-compose-linux-x86_64" -o /usr/local/lib/docker/cli-plugins/docker-compose && chmod +x /usr/local/lib/docker/cli-plugins/docker-compose # buildkit |
| RUN |3 DOCKER_VERSION=27.5.1 BUILDX_VERSION=0.21.2 COMPOSE_VERSION=2.32.4 /bin/sh -c git --version && docker --version && docker buildx version && docker compose version # buildkit |