From 39bb94ebb7317cfcd4eed448fa530d30022799e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20X=2E=20F=C3=BCrst?= Date: Fri, 5 Jun 2026 17:50:33 +0200 Subject: [PATCH] fix: public-Ordner in Docker-Runner-Stage kopieren Next.js standalone serviert /public nicht automatisch. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 7274fe3..ee0118e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,7 @@ RUN adduser --system --uid 1001 nextjs COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static +COPY --from=builder --chown=nextjs:nodejs /app/public ./public USER nextjs