Build forgejo-runner-node image / build (push) Failing after 30s
- Dockerfile.node extends node:22-bookworm + docker.io - CI workflow builds and pushes to forgejo registry on changes - values-node.yaml references custom image instead of stock node - Removes need to install docker in every workflow using node runner
14 lines
319 B
Docker
14 lines
319 B
Docker
FROM node:22-bookworm
|
|
|
|
# Install Docker client (dind sidecar provides the daemon)
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
docker.io \
|
|
git \
|
|
curl \
|
|
ca-certificates && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Verify installation
|
|
RUN docker --version && node --version
|