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.
This commit is contained in:
Marvin Zhang
2025-04-16 10:56:10 +08:00
parent 47810fa2bb
commit 21df22fe24

View File

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