solve permission problem

This commit is contained in:
2026-04-12 14:51:37 -05:00
parent bbc26f200b
commit 434b5954c1

View File

@@ -60,6 +60,9 @@ COPY --from=builder /app/docker/entrypoint.sh ./docker/entrypoint.sh
RUN chmod +x ./docker/entrypoint.sh
# --- NEU: Ordner erstellen und Rechte an den nextjs User geben ---
RUN mkdir -p /app/.next/cache && chown nextjs:nodejs /app/.next/cache
USER nextjs
EXPOSE 3000