Get logs from yarn install if failed.

This commit is contained in:
SergeantPanda 2025-09-28 09:38:01 -05:00
parent 19f0088b40
commit e281041458

View file

@ -10,7 +10,7 @@ COPY ./frontend /app/frontend
RUN corepack enable && corepack prepare yarn@stable --activate
RUN yarn install
RUN yarn install || (find /tmp -name build.log -exec cat {} \; && exit 1)
RUN yarn build