runner-images/pnpm (22)

Published 2026-06-06 23:21:24 +05:00 by hayshin

Installation

docker pull git.hayshin.dev/infra/runner-images/pnpm:22
sha256:097ac1b9af6ee4259463913b0ce422d3c0627d26250eb20dfce31405e107e71b

About this package

Forgejo Actions runner image with Node.js 22.22.2, pnpm 11.5.2, git, bash, curl, certificates, and common POSIX tools

Image layers

# debian.sh --arch 'amd64' out/ 'bookworm' '@1777939200'
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase sq wget ; rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends autoconf automake bzip2 default-libmysqlclient-dev dpkg-dev file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev libdb-dev libevent-dev libffi-dev libgdbm-dev libglib2.0-dev libgmp-dev libjpeg-dev libkrb5-dev liblzma-dev libmagickcore-dev libmagickwand-dev libmaxminddb-dev libncurses5-dev libncursesw5-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev libyaml-dev make patch unzip xz-utils zlib1g-dev ; rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # buildkit
ENV NODE_VERSION=22.22.2
RUN /bin/sh -c ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64';; ppc64el) ARCH='ppc64le';; s390x) ARCH='s390x';; arm64) ARCH='arm64';; armhf) ARCH='armv7l';; i386) ARCH='x86';; *) echo "unsupported architecture"; exit 1 ;; esac && export GNUPGHOME="$(mktemp -d)" && set -ex && for key in 5BE8A3F6C8A5C01D106C0AD820B1A390B168D356 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 CC68F5A3106FF448322E48ED27F5E38D5B0A215F 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C 108F52B48DB57BB0CC439B2997B01419BD92F80A A363A499291CBBC940DD62E41F10027AF002F8B0 ; do { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } || { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ; done && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && gpgconf --kill all && rm -rf "$GNUPGHOME" && grep " node-v$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt && ln -s /usr/local/bin/node /usr/local/bin/nodejs && node --version && npm --version && rm -rf /tmp/* # buildkit
ENV YARN_VERSION=1.22.22
RUN /bin/sh -c set -ex && export GNUPGHOME="$(mktemp -d)" && for key in 6A010C5166006599AA17F08146C2130DFD2497F5 ; do { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } || { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ; done && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && gpgconf --kill all && rm -rf "$GNUPGHOME" && mkdir -p /opt && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && yarn --version && rm -rf /tmp/* # buildkit
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["node"]
ARG VCS_REF
ARG BUILD_DATE VCS_REF
ARG BUILD_DATE IMAGE_VERSION VCS_REF
LABEL org.opencontainers.image.source="https://git.hayshin.dev/infra/runner-images" org.opencontainers.image.description="Forgejo Actions runner image with Node.js 22.22.2, pnpm 11.5.2, git, bash, curl, certificates, and common POSIX tools" org.opencontainers.image.revision="${VCS_REF}" org.opencontainers.image.created="${BUILD_DATE}" org.opencontainers.image.version="${IMAGE_VERSION}"
ARG BUILD_DATE IMAGE_VERSION NODE_VERSION VCS_REF
ARG BUILD_DATE IMAGE_VERSION NODE_VERSION NPM_VERSION VCS_REF
ARG BUILD_DATE IMAGE_VERSION NODE_VERSION NPM_VERSION PNPM_VERSION VCS_REF
ARG BUILD_DATE IMAGE_VERSION NODE_VERSION NPM_VERSION PNPM_INTEGRITY PNPM_VERSION VCS_REF
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]
|7 BUILD_DATE=2026-06-06T18:20:40Z IMAGE_VERSION=22 NODE_VERSION=22.22.2 NPM_VERSION=10.9.7 PNPM_INTEGRITY=sha512-ccYx44IGbvwlYl1c8CkHXeB7YbN/bic1D72Esb2lhkyMGWetwoB3a0XDCnFcA1mjvgj+9C1bsJ4rmQKZeWkpFg== PNPM_VERSION=11.5.2 VCS_REF=fb3af008f94af6ef52fe928a1108e8557c1075e3 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends --no-upgrade gawk libsigsegv2 && rm -rf /var/lib/apt/lists/*
|7 BUILD_DATE=2026-06-06T18:20:40Z IMAGE_VERSION=22 NODE_VERSION=22.22.2 NPM_VERSION=10.9.7 PNPM_INTEGRITY=sha512-ccYx44IGbvwlYl1c8CkHXeB7YbN/bic1D72Esb2lhkyMGWetwoB3a0XDCnFcA1mjvgj+9C1bsJ4rmQKZeWkpFg== PNPM_VERSION=11.5.2 VCS_REF=fb3af008f94af6ef52fe928a1108e8557c1075e3 /bin/sh -c node --version | grep -Fx "v${NODE_VERSION}" && npm --version | grep -Fx "${NPM_VERSION}" && curl -fsSLo /tmp/pnpm.tgz "https://registry.npmjs.org/pnpm/-/pnpm-${PNPM_VERSION}.tgz" && actual_integrity="sha512-$(openssl dgst -sha512 -binary /tmp/pnpm.tgz | openssl base64 -A)" && test "${actual_integrity}" = "${PNPM_INTEGRITY}" && npm install -g --ignore-scripts --no-audit --no-fund /tmp/pnpm.tgz && pnpm --version | grep -Fx "${PNPM_VERSION}" && rm -f /tmp/pnpm.tgz
CMD ["/bin/bash"]
LABEL "org.opencontainers.image.ref.name"="main" "org.opencontainers.image.revision"="fb3af008f94af6ef52fe928a1108e8557c1075e3" "org.opencontainers.image.source"="https://git.hayshin.dev/infra/runner-images"

Labels

Key Value
io.buildah.version 1.43.0
org.opencontainers.image.created 2026-06-06T18:20:40Z
org.opencontainers.image.description Forgejo Actions runner image with Node.js 22.22.2, pnpm 11.5.2, git, bash, curl, certificates, and common POSIX tools
org.opencontainers.image.ref.name main
org.opencontainers.image.revision fb3af008f94af6ef52fe928a1108e8557c1075e3
org.opencontainers.image.source https://git.hayshin.dev/infra/runner-images
org.opencontainers.image.version 22
Details
Container
2026-06-06 23:21:24 +05:00
0
OCI / Docker
linux/amd64
415 MiB
Versions (2) View all