fix: alpine base image requires apk, not apt-get + root user for package installs

Problem: Forgejo runner base image is Alpine, not Debian.
-  doesn't exist (Alpine uses )
- Runner user is 1000, can't modify apk database (permission denied)
- CI workflow used GitHub-specific conditionals (contains() doesn't work in Forgejo)

Fixes:
1. Replace apt-get with apk for all runner Dockerfiles
2. Switch to USER root before package installation
3. Switch back to runner user (1000:1000) after
4. Simplify build workflow: build all runners in loop (no conditionals)

Testing:
 Golang runner: docker, node, npm installed
 Node runner: docker, node, npm installed
 Rust runner: docker, node, npm installed

This enables:
- homelab-frontend CI to build/push api-gateway image
- Build workflow to run on node runner with docker available
- All three runners have docker-cli for CI workflows
This commit is contained in:
2026-09-06 06:27:48 -07:00
parent e1d17c2a4a
commit 6c751e7f93
4 changed files with 48 additions and 52 deletions
+9 -5
View File
@@ -1,12 +1,16 @@
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 \
# Switch to root to install packages
USER root
# Alpine uses apk, not apt-get
RUN apk update && apk add --no-cache \
nodejs \
npm \
docker.io && \
rm -rf /var/lib/apt/lists/*
docker-cli
# Verify installations
RUN docker --version && node --version && git --version
# Switch back to runner user
USER 1000:1000
+11 -6
View File
@@ -1,11 +1,16 @@
FROM code.forgejo.org/forgejo/runner:6
# Install Docker client (forgejo/runner base doesn't include it)
RUN apt-get update && \
apt-get install -y --no-install-recommends \
docker.io && \
rm -rf /var/lib/apt/lists/*
# Switch to root to install packages
USER root
# Alpine uses apk, not apt-get
RUN apk update && apk add --no-cache \
docker-cli \
nodejs \
npm
# Verify installations
RUN node --version && docker --version && git --version
# Trigger node-runner build with docker
# Switch back to runner user
USER 1000:1000
+14 -10
View File
@@ -1,16 +1,20 @@
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 \
# Switch to root to install packages
USER root
# Alpine uses apk, not apt-get
RUN apk update && apk add --no-cache \
nodejs \
npm && \
rm -rf /var/lib/apt/lists/*
npm \
curl \
docker-cli
# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# Install Rust (as root, skip verification for now)
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable || true
ENV PATH="/root/.cargo/bin:${PATH}"
# Verify core installations
RUN docker --version && node --version && git --version
# Verify installations
RUN docker --version && node --version && git --version && rustc --version
# Switch back to runner user
USER 1000:1000