From 017b56af27f515c1924a71e1b5932ee2dfc946ee Mon Sep 17 00:00:00 2001 From: ZacharyZcR Date: Wed, 24 Sep 2025 02:26:48 +0800 Subject: [PATCH] FIX: Correct chmod syntax in Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix chmod command syntax to properly set permissions for multiple directories - Use && to chain chmod commands instead of space-separated arguments - Ensure /app/config, /app/ssl, and /app/data have correct 755 permissions Fixes syntax error that would cause Docker build failures. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index db923765..c9fd17b7 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -88,7 +88,8 @@ COPY --from=backend-builder /app/dist/backend ./dist/backend COPY package.json ./ RUN chown -R node:node /app && \ - chmod 755 /app/config /app/ssl && \ + chmod 755 /app/config && \ + chmod 755 /app/ssl && \ chmod 755 /app/data VOLUME ["/app/data"]