From 260c8475a4d1f085ead1738b4257e83817009f5d Mon Sep 17 00:00:00 2001 From: Sebastian Slettebakken <43045439+sebastas@users.noreply.github.com> Date: Sat, 6 Jun 2026 17:45:23 +0200 Subject: [PATCH] fix: remove public COPY (directory not used) --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1ec5b87..3493107 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,6 @@ RUN apk add --no-cache su-exec shadow && \ # Copy standalone build output 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 COPY --chmod=755 entrypoint.sh /entrypoint.sh EXPOSE 3000