feat(gitea): add initial implementation of Gitea act_runner addon with configuration and runtime scripts

This commit is contained in:
Martin Tahiraj
2026-04-01 15:20:30 +02:00
parent 35bb3aad89
commit dc68562bbd
4 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
ARG BUILD_FROM
FROM ${BUILD_FROM}
# Install jq to parse /data/options.json provided by the HA supervisor
RUN apk add --no-cache jq
COPY run.sh /run.sh
RUN chmod +x /run.sh
ENTRYPOINT ["/run.sh"]