feat(gitea): update to version 1.0.1 with improved binary path handling and enhanced error reporting

This commit is contained in:
Martin Tahiraj
2026-04-02 10:39:37 +02:00
parent bc2fbe7f5b
commit 209a47b043
4 changed files with 27 additions and 5 deletions

View File

@@ -1,8 +1,11 @@
ARG BUILD_FROM
FROM ${BUILD_FROM}
# Install jq to parse /data/options.json provided by the HA supervisor
RUN apk add --no-cache jq
# Install jq to parse /data/options.json provided by the HA supervisor.
# Also create a stable symlink so act_runner is available at /usr/local/bin/act_runner
# regardless of where the base image places it (official image puts it at /act_runner).
RUN apk add --no-cache jq \
&& ln -sf "$(command -v act_runner 2>/dev/null || echo /act_runner)" /usr/local/bin/act_runner
COPY run.sh /run.sh
RUN chmod +x /run.sh