feat(gitea): update to version 1.0.1 with improved binary path handling and enhanced error reporting
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user