From e7962d7c0cc51c8b6b2a1c48c86203ffa5b78cf7 Mon Sep 17 00:00:00 2001 From: MBO-Tech-IT Date: Sun, 26 Apr 2026 14:00:48 +0200 Subject: [PATCH] fix: remove non-existent public directory from Dockerfile Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ff64245..1824c01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,6 @@ RUN addgroup --system nodejs && adduser --system --ingroup nodejs 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 EXPOSE 3000