fix: update Dockerfile to correct chmod command for agent scripts

This commit is contained in:
Burnett01 2025-09-01 13:15:20 +00:00
parent 9b1bf7278e
commit 844957283c

View file

@ -5,7 +5,7 @@ RUN apk update && apk add --no-cache --upgrade rsync openssh-client openssl
RUN rm -rf /var/cache/apk/* RUN rm -rf /var/cache/apk/*
COPY docker-rsync/* /bin/ COPY docker-rsync/* /bin/
RUN chmod +x /bin/agent-* /bin/hosts-* RUN chmod +x /bin/agent-*
FROM base as build FROM base as build