From 326df960880a5e3fa800ab8961bb5502cef37edf Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 29 May 2025 16:07:07 +0200 Subject: [PATCH] chore: add debug ls command to inspect /app contents before supervisor start --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index b1290e9..1818dca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,6 +52,8 @@ COPY css/ /usr/share/nginx/html/css/ WORKDIR /app # Make sure this WORKDIR is set before copying to /app COPY --from=builder /app . +RUN ls -la /app # DEBUG: List contents of /app before supervisor starts + # Create data directory (volume will be mounted here by docker-compose) # Ensure Nginx (and Node.js if it needs to write logs/pid here) has permissions RUN mkdir -p /data && chown nginx:nginx /data # Or appropriate user for Node.js if it writes here