Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions frontend/next-app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ COPY . .
ARG NEXT_PUBLIC_API_URL
ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
ENV NODE_OPTIONS="--max-old-space-size=2048"
RUN echo "=== DEBUG: listing src/components/media/ ===" && ls -la src/components/media/ || echo "!!! media/ directory does NOT exist !!!"
RUN echo "=== DEBUG: full src/components/ tree ===" && find src/components/ -type f | head -50
RUN npm run build

FROM base AS runner
Expand Down
Loading