This commit is contained in:
jonathang4 2025-05-30 19:01:43 +08:00
parent c0a0c55b1d
commit aa03598e1d

View File

@ -16,6 +16,11 @@ COPY . .
# Build the application # Build the application
RUN yarn run build RUN yarn run build
RUN echo "Debug: Contents of /app after build:"
RUN ls -la /app
RUN echo "Debug: Contents of /app/dist after build:"
RUN ls -la /app/dist || echo "Debug: /app/dist directory not found or ls failed"
EXPOSE 3302 EXPOSE 3302
CMD ["npm", "start"] CMD ["npm", "start"]