FROM code.forgejo.org/forgejo/runner:6 # Install Node.js + Rust (needed for GitHub Actions checkout@v4, etc.) RUN apt-get update && \ apt-get install -y --no-install-recommends \ nodejs \ npm && \ rm -rf /var/lib/apt/lists/* # Install Rust RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" # Verify installations RUN docker --version && node --version && git --version && rustc --version