From 47810fa2bbafe3268a296edb5f6292f55af8f974 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Wed, 16 Apr 2025 10:54:02 +0800 Subject: [PATCH] chore: update Dockerfile for debugging file copy verification - Added commands to list files and display the contents of LogsView.vue to verify correct copying of application code during the Docker build process. --- frontend/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index c799f06c..257dcf6b 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -14,6 +14,10 @@ RUN npm install -g pnpm # Copy application code 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 + # Install project dependencies RUN pnpm install