actions-base-image/Dockerfile
teutat3s 6a9eefa522
All checks were successful
Build docker image / build-image (push) Successful in 1m56s
ci: update to node:22-bookworm, update actions
2025-04-15 21:04:31 +02:00

8 lines
220 B
Docker

FROM node:22-bookworm
RUN useradd --create-home --shell /bin/bash --groups sudo ci
RUN apt-get update && apt-get install -y jq sudo zstd
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
USER ci
WORKDIR /home/ci