ci: remove custom runner image approach (use public images) #5

Closed
rock wants to merge 21 commits from fix/cleanup-runner-approach into main
Showing only changes of commit 6b7e556d81 - Show all commits
+3 -2
View File
@@ -1,10 +1,11 @@
FROM code.forgejo.org/forgejo/runner:6
# Install Node.js (needed for GitHub Actions checkout@v4, etc.)
# Install Node.js + Docker client (needed for GitHub Actions + docker build)
RUN apt-get update && \
apt-get install -y --no-install-recommends \
nodejs \
npm && \
npm \
docker.io && \
rm -rf /var/lib/apt/lists/*
# Verify installations