From 617a57fb3f148f81ca67d4921721d56489087631 Mon Sep 17 00:00:00 2001 From: Liam Date: Fri, 19 Apr 2024 16:58:54 +0100 Subject: [PATCH] fix the Dockerfile - copy public dir --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9e82b37..a0235c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,7 +55,7 @@ COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static # Copy the public folder -COPY --from=builder --chown=nextjs:nodejs /app/public ./public +COPY --chown=nextjs:nodejs /app/public ./public USER nextjs