From 0f1cb7924d785b6a10471b40dc8dd30fa8309eaa Mon Sep 17 00:00:00 2001 From: Steven Date: Sat, 6 Dec 2025 19:19:26 +0000 Subject: [PATCH] fix: permissions of docker-rsync scripts --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae6e8c4..f446eae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apk update && apk add --no-cache --upgrade rsync openssh openssl busybox RUN rm -rf /var/cache/apk/* COPY docker-rsync/* /bin/ -RUN chmod +x /bin/agent-* +RUN chmod +x /bin/agent-* /bin/ssh-* /bin/hosts-* FROM base AS build