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."
9 lines
172 B
Docker
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 |