From aa03598e1d22febb7f588bcada960860acf40ef4 Mon Sep 17 00:00:00 2001 From: jonathang4 Date: Fri, 30 May 2025 19:01:43 +0800 Subject: [PATCH] 1 --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index fa9274d..9e7d105 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,11 @@ COPY . . # Build the application RUN yarn run build +RUN echo "Debug: Contents of /app after build:" +RUN ls -la /app +RUN echo "Debug: Contents of /app/dist after build:" +RUN ls -la /app/dist || echo "Debug: /app/dist directory not found or ls failed" + EXPOSE 3302 CMD ["npm", "start"] \ No newline at end of file