| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:6df775300d76441aa33f31b22c1afce8dfe35c8ffbc14ef27c27009235b12a95 in / |
| CMD ["/bin/bash"] |
| ARG NODE_VERSION |
| ENV DEBIAN_FRONTEND=noninteractive |
| |1 NODE_VERSION=20 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends apt-transport-https ca-certificates curl git gnupg jq lsb-release software-properties-common sudo tar unzip wget zip build-essential cmake && rm -rf /var/lib/apt/lists/* |
| |1 NODE_VERSION=20 /bin/sh -c curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - && apt-get update && apt-get install -y nodejs && rm -rf /var/lib/apt/lists/* && npm install -g npm@latest |
| |1 NODE_VERSION=20 /bin/sh -c groupadd --gid 1001 runner && useradd --uid 1001 --gid 1001 -m -s /bin/bash runner && echo "runner ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers |
| |1 NODE_VERSION=20 /bin/sh -c mkdir -p /opt/hostedtoolcache && chown -R runner:runner /opt/hostedtoolcache |
| USER runner |
| WORKDIR /home/runner |
| CMD ["bash"] |