FROM ghcr.io/actions/actions-runner@sha256:0cfdcc701ce933c6d243c6b0b2da767366dc9f2e99961d4c3754b0b78084cdda
USER root
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
 && apt-get install -y --no-install-recommends \
      ca-certificates curl git jq nodejs npm php-cli php-json python3 python3-pytest \
      rsync unzip zip docker.io \
 && rm -rf /var/lib/apt/lists/*
USER runner
