From 9cb488324076373506ab7b712c2f9bccaf4b659e Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 4 Feb 2026 08:56:17 +0100 Subject: [PATCH] Add execute permission to vpn script --- qbittorrent/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/qbittorrent/Dockerfile b/qbittorrent/Dockerfile index 8f58be02c..6f7fc4b13 100644 --- a/qbittorrent/Dockerfile +++ b/qbittorrent/Dockerfile @@ -92,6 +92,7 @@ RUN \ # Copy local files COPY rootfs/ / RUN find /etc -type f \( -name "*.sh" -o -name "run" -o -name "finish" \) -exec chmod +x {} + +RUN chmod +x /usr/local/sbin/vpn # Uses /bin for compatibility purposes # hadolint ignore=DL4005