From 21df22fe240f464817f1797b3d0a8dc76f4aae27 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Wed, 16 Apr 2025 10:56:10 +0800 Subject: [PATCH] chore: enhance Dockerfile for improved debugging - Updated the Dockerfile to include additional commands for listing files in the application directory structure, aiding in the verification of file copying during the Docker build process. --- frontend/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 257dcf6b..36fa9d89 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -15,8 +15,9 @@ RUN npm install -g pnpm ADD ./crawlab-ui /app # Debug: List files to verify they're correctly copied -RUN ls -la /app/src/components/ui/logs/ -RUN cat /app/src/components/ui/logs/LogsView.vue +RUN ls -la /app/src/ +RUN ls -la /app/src/components/ +RUN ls -la /app/src/components/ui/ || echo "UI directory not found" # Install project dependencies RUN pnpm install