Fix images cache EACCES error
All checks were successful
Publish Docker Image / Publish Docker Image (push) Successful in 4s

This commit is contained in:
2025-07-28 18:36:03 -04:00
parent 94a35b1ea6
commit d7803c07ea

View File

@@ -34,6 +34,7 @@ COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./package.json
RUN mkdir -p /app/.yarn && chown -R nextjs:nodejs /app/.yarn
RUN mkdir -p /app/.next/cache/images && chown -R nextjs:nodejs /app/.next/cache/images
USER nextjs
EXPOSE 3000