From ff23243bd366a028e225cfdd559d5c9cd6bb6c6d Mon Sep 17 00:00:00 2001 From: Anton Podviaznikov Date: Sat, 16 Oct 2021 10:09:57 -0700 Subject: [PATCH] fix dockefile: coudl not start because config file is missing --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b491b2b..c96f1aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ WORKDIR /app ENV NODE_ENV production COPY --from=builder /app/next.config.js ./ +COPY --from=builder /app/next-i18next.config.js ./ COPY --from=builder /app/public ./public COPY --from=builder /app/.next ./.next COPY --from=builder /app/node_modules ./node_modules