Skip to content

Commit

Permalink
chore: update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MinhoJJang committed Aug 8, 2024
1 parent 06c858d commit f41c21b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ RUN npm install sharp
# Build the Next.js application
RUN npm run build

# Add debugging steps
RUN echo "Contents of /app directory:"
RUN ls -la /app
RUN echo "Contents of /app/.next directory:"
RUN ls -la /app/.next
RUN echo "Contents of /app/.next/standalone directory (if it exists):"
RUN ls -la /app/.next/standalone || echo "Standalone directory not found"

# Production stage
FROM node:18-alpine AS runner

Expand Down

0 comments on commit f41c21b

Please sign in to comment.