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.
This commit is contained in:
Marvin Zhang
2025-04-16 10:54:02 +08:00
parent 13fd2d4c4e
commit 47810fa2bb

View File

@@ -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