Block a user
ci-playwright (latest)
Published 2026-03-23 04:38:20 +00:00 by sanction9319
Installation
docker pull git.zede.us/sanction9319/ci-playwright:latestsha256:70faf3f626f8ca52b6957abacff4833519def0c5c020aeac2c60606271e7160f
About this package
Special image built for using with https://github.com/nektos/act
Image Layers
| 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"] |
| RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase sq wget tzdata ; apt-get dist-clean # buildkit |
| RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; apt-get dist-clean # 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 ; apt-get dist-clean # buildkit |
| ARG TARGETARCH |
| ARG FROM_IMAGE TARGETARCH |
| ARG FROM_IMAGE FROM_TAG TARGETARCH |
| ARG FROM_IMAGE FROM_TAG NODE_VERSION TARGETARCH |
| ARG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION TARGETARCH |
| ARG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION TARGETARCH TYPE |
| ARG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ENV DEBIAN_FRONTEND=noninteractive |
| SHELL [ "/bin/bash", "--login", "-e", "-o", "pipefail", "-c" ] |
| WORKDIR /tmp |
| COPY dir:5b6280ac48c48d01a24beadefcc7925797e30b58c4e23397b73e6ae12037177d in /imagegeneration/installers |
| |8 DISTRO=ubuntu FROM_IMAGE=buildpack-deps FROM_TAG=24.04 NODE_VERSION=20 24 RUNNER=root TARGETARCH=amd64 TYPE=act /bin/sh -c bash /imagegeneration/installers/${TYPE}.sh |
| ARG BUILD_DATE DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_TAG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_REF BUILD_TAG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_REF BUILD_TAG BUILD_TAG_VERSION DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_OWNER BUILD_REF BUILD_TAG BUILD_TAG_VERSION DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| ARG BUILD_DATE BUILD_OWNER BUILD_REF BUILD_REPO BUILD_TAG BUILD_TAG_VERSION DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE |
| LABEL org.opencontainers.image.created="${BUILD_DATE}" |
| LABEL org.opencontainers.image.vendor="${BUILD_OWNER}" |
| LABEL org.opencontainers.image.authors="https://github.com/${BUILD_OWNER}" |
| LABEL org.opencontainers.image.url="https://github.com/${BUILD_OWNER}/${BUILD_REPO}/tree/${BUILD_REF}/linux/${DISTRO}/${TYPE}/" |
| LABEL org.opencontainers.image.source="https://github.com/${BUILD_OWNER}/${BUILD_REPO}" |
| LABEL org.opencontainers.image.documentation="https://github.com/${BUILD_OWNER}/${BUILD_REPO}" |
| LABEL org.opencontainers.image.version="${BUILD_TAG_VERSION}" |
| LABEL org.opencontainers.image.title="${BUILD_TAG}-${TARGETARCH}" |
| LABEL org.opencontainers.image.description="Special image built for using with https://github.com/nektos/act" |
| LABEL org.opencontainers.image.revision="${BUILD_REF}" |
| USER ${RUNNER} |
| /bin/bash --login -e -o pipefail -c |
| ARG NODE_MAJOR=24 |
| ENV DEBIAN_FRONTEND=noninteractive PIP_DISABLE_PIP_VERSION_CHECK=1 PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PLAYWRIGHT_BROWSERS_PATH=/root/.cache/ms-playwright VIRTUAL_ENV=/opt/venv PATH=/opt/venv/bin:/opt/acttoolcache/node/24.14.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin |
| WORKDIR /opt/ci |
| RUN |1 NODE_MAJOR=24 /bin/bash --login -e -o pipefail -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl ffmpeg git gnupg python-is-python3 python3-pip python3-venv && mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_${NODE_MAJOR}.x nodistro main" > /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install -y --no-install-recommends nodejs && node --version && npm --version && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN |1 NODE_MAJOR=24 /bin/bash --login -e -o pipefail -c python -m venv "${VIRTUAL_ENV}" # buildkit |
| COPY requirements.txt requirements-dev.txt ./ # buildkit |
| RUN |1 NODE_MAJOR=24 /bin/bash --login -e -o pipefail -c python -m pip install --no-cache-dir -r requirements.txt -r requirements-dev.txt # buildkit |
| COPY frontend/package.json frontend/package-lock.json ./frontend/ # buildkit |
| RUN |1 NODE_MAJOR=24 /bin/bash --login -e -o pipefail -c npm --prefix frontend ci --ignore-scripts && npm --prefix frontend exec -- playwright --version && npm --prefix frontend exec -- playwright install --with-deps chromium && rm -rf frontend/node_modules # buildkit |
Labels
| Key | Value |
|---|---|
| io.buildah.version | 1.35.0 |
| org.opencontainers.image.authors | https://github.com/catthehacker |
| org.opencontainers.image.created | 2026-03-22 13:12:43Z |
| org.opencontainers.image.description | Special image built for using with https://github.com/nektos/act |
| org.opencontainers.image.documentation | https://github.com/catthehacker/catthehacker/docker_images |
| org.opencontainers.image.ref.name | ubuntu |
| org.opencontainers.image.revision | e2f8efe464c82732f78e967ee709c00b6af53643 |
| org.opencontainers.image.source | https://github.com/catthehacker/catthehacker/docker_images |
| org.opencontainers.image.title | act-24.04-amd64 |
| org.opencontainers.image.url | https://github.com/catthehacker/catthehacker/docker_images/tree/e2f8efe464c82732f78e967ee709c00b6af53643/linux/ubuntu/act/ |
| org.opencontainers.image.vendor | catthehacker |
| org.opencontainers.image.version | 20260322 |