FROM code.forgejo.org/forgejo/runner:6 # Install Node.js + Docker client (needed for GitHub Actions + docker build) RUN apt-get update && \ apt-get install -y --no-install-recommends \ nodejs \ npm \ docker.io && \ rm -rf /var/lib/apt/lists/* # Verify installations RUN docker --version && node --version && git --version