From ee93b7cafc321b33c1065636c8ab71df3c45681e Mon Sep 17 00:00:00 2001 From: Benoit Date: Sat, 6 Dec 2025 22:50:12 +0100 Subject: [PATCH] Remove debug from frontend Dockerfile --- frontend/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 611b880..ecf7a27 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -12,9 +12,6 @@ RUN npm ci # Copy application code COPY . . -# Debug: List files to verify lib/ is present -RUN ls -la /app && ls -la /app/lib - # Build the application RUN npm run build