From da9bf02f9a54e64a6b82b843cefe960d0d1ccde4 Mon Sep 17 00:00:00 2001 From: lukestahl Date: Tue, 11 Apr 2023 18:15:51 +0200 Subject: [PATCH] fix: docker copy edge-chunks --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3cbfc85..6b46cb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,7 @@ COPY --from=builder /app/public ./public # https://nextjs.org/docs/advanced-features/output-file-tracing COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/static ./.next/static -COPY --from=builder /app/.next/edge-chunks ./.next/edge-chunks +COPY --from=builder /app/.next/server/edge-chunks ./.next/server/edge-chunks COPY --from=builder /app/scripts ./scripts EXPOSE 3000