From 844957283c2f12aa23b766fbfd88733d487d4c6e Mon Sep 17 00:00:00 2001 From: Burnett01 Date: Mon, 1 Sep 2025 13:15:20 +0000 Subject: [PATCH] fix: update Dockerfile to correct chmod command for agent scripts --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a64e2a4..f383a0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apk update && apk add --no-cache --upgrade rsync openssh-client openssl RUN rm -rf /var/cache/apk/* COPY docker-rsync/* /bin/ -RUN chmod +x /bin/agent-* /bin/hosts-* +RUN chmod +x /bin/agent-* FROM base as build