added Gitea runner image
CI / Build Gitea runner docker images (push) Successful in 34m25s

This commit is contained in:
2026-06-15 21:59:33 +08:00
parent dbbb616dbe
commit 745916e704
2 changed files with 39 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM alpine:3.24
RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
RUN --mount=type=cache,target=/var/cache/apk apk update
RUN --mount=type=cache,target=/var/cache/apk apk add gitea-runner@testing nodejs docker
USER gitea-runner
WORKDIR /var/lib/gitea-runner
CMD ["/usr/bin/gitea-runner", "daemon", "--config", "/etc/gitea-runner/config.yaml"]