From 163249ad747059da6fb9ce41da5ac2d6cfbb7c38 Mon Sep 17 00:00:00 2001 From: Ali Date: Tue, 22 Oct 2024 14:28:50 +0330 Subject: [PATCH] fix dockerfile bug --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e86e5ce53..614848711 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN npm install -g pnpm && \ # Copy built assets from the base stage COPY --from=base /app/.next ./.next COPY --from=base /app/public ./public -COPY --from=base /app/next.config.mjs ./next.config.mjs +COPY --from=base /app/next.config.js ./next.config.js # Expose the port the app runs on EXPOSE 3000