Files
Gitea-runner/Dockerfile
Szakáts Alpár Zsolt 8a3b6f21b3
All checks were successful
Build, Push and Run Container / build (push) Successful in 51s
Add BuildX
New supported builder for docker
2025-08-12 19:19:41 +02:00

21 lines
618 B
Docker

# syntax=docker/dockerfile:1.7
FROM gitea/act_runner:latest
USER root
# Core tools for CI
RUN apk add --no-cache \
nodejs npm coreutils \
docker-cli docker-cli-compose docker-cli-buildx \
git git-lfs openssh-client \
build-base bash curl jq unzip zip ca-certificates \
&& git lfs install --system \
&& npm --version && node --version
# Optional: enable Corepack (yarn/pnpm shims)
RUN corepack enable || true
# Use host backend by default; override via compose env if you like
ENV GITEA_RUNNER_LABELS="ap-host:host"
WORKDIR /data
# act_runner has its own entrypoint; nothing else needed.