Add configurable data location

This commit is contained in:
Alexandre
2026-01-28 19:41:00 +01:00
parent 28d57a80e4
commit dca06b9a9d
11 changed files with 122 additions and 38 deletions

View File

@@ -50,7 +50,7 @@ USER root
# Copy local files
COPY rootfs/ /
RUN find . -type f \( -name "*.sh" -o -name "run" \) -print -exec chmod +x {} \;
RUN find /etc -type f \( -name "*.sh" -o -path "*/services.d/*/run" \) -exec chmod +x {} \;
# Uses /bin for compatibility purposes
# hadolint ignore=DL4005