9595a18f3a
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
12 lines
264 B
Docker
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/*
|