Files
infrastructure/servers/legion/k8s/gitea-runner/Dockerfile
T
Will Anderson 9595a18f3a refactor: rebase CI runner on Ubuntu 24.04, rename to ci-base
Replace Alpine-based legion-runner with a minimal Ubuntu 24.04 image.
The act_runner binary is copied from the official image via multi-stage
build. Job-specific tooling (Ruby, Node, Python, etc.) belongs in
per-job container images specified via container: in workflows, not
in the base runner image.

Rename: legion-runner → ci-base
2026-03-26 11:32:52 -05:00

12 lines
264 B
Docker

FROM gitea/act_runner:latest AS runner-bin
FROM ubuntu:24.04
COPY --from=runner-bin /bin/act_runner /bin/act_runner
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
git \
&& rm -rf /var/lib/apt/lists/*