Files
LUNA-Charts/.gitea/runners/Dockerfile
T
Ninosaurier 4b8cb62817 fix(ci-runner): add Dockerfile for node22 CI runner image
Base image for the gitea-act-runner build environment, includes
Docker CLI and docker-compose for CI jobs that need to build/push
containers, plus corepack for yarn/pnpm support."
2026-08-02 17:05:03 +02:00

9 lines
172 B
Docker

FROM node:22-bullseye
RUN apt-get update \
&& apt-get install -y docker.io \
&& rm -rf /var/lib/apt/lists/*
RUN corepack enable
RUN npm install -g docker-compose