| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:46ac5b8ee4c64ad9ebe840abd5619f571a617ac19483764d47d0eeba7907934f in / |
| CMD ["/bin/bash"] |
| ARG ARCH=amd64 |
| RUN |1 ARCH=amd64 /bin/sh -c if [ "${ARCH}" = "amd64" ]; then apt-get update; apt-get -y --no-install-recommends install ca-certificates libodbc2 libssl3t libsctp1 netbase; apt-get clean; rm -rf /var/lib/apt/lists/*; elif [ "${ARCH}" = "arm64" ]; then apt-get update; apt-get -y --no-install-recommends install ca-certificates libodbc2 libssl3t64 libsctp1 netbase; apt-get clean; rm -rf /var/lib/apt/lists/*; fi # buildkit |
| COPY /usr/local /usr/local # buildkit |
| ENV LANG=C.UTF-8 |
| COPY /ELIXIR_LOCAL/usr/local /usr/local # buildkit |
| ARG NODE_MAJOR=24 |
| ARG PLAYWRIGHT_VERSION=1.61.1 |
| ENV LANG=C.UTF-8 DEBIAN_FRONTEND=noninteractive |
| RUN |2 NODE_MAJOR=24 PLAYWRIGHT_VERSION=1.61.1 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl git gnupg build-essential && curl -fsSL https://deb.nodesource.com/setup_${NODE_MAJOR}.x | bash - && install -m 0755 -d /etc/apt/keyrings && curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc && echo "deb [signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu noble stable" > /etc/apt/sources.list.d/docker.list && apt-get update && apt-get install -y --no-install-recommends nodejs docker-ce-cli docker-buildx-plugin docker-compose-plugin iproute2 && npx -y playwright@${PLAYWRIGHT_VERSION:?} install-deps chromium && apt-get clean && rm -rf /var/lib/apt/lists/* /root/.npm # buildkit |