Skip to content

Commit 16e51ec

Browse files
marshallswainclaude
andcommitted
debug: Add working directory debugging to Docker build
Add debugging to see the current working directory and verify that lib directory is properly copied and accessible for the tests. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 2b11300 commit 16e51ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.node12

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ COPY --chown=node:node .eslintrc.js ./
5151
# Copy built files from builder stage
5252
COPY --from=builder /app/lib ./lib
5353

54-
# Verify lib directory exists in runtime stage
55-
RUN ls -la lib/
54+
# Debug: Check current working directory and paths
55+
RUN pwd && ls -la && echo "Contents of lib:" && ls -la lib/
5656

5757
# Fix mocha permissions
5858
RUN chmod +x node_modules/.bin/mocha

0 commit comments

Comments
 (0)