From 32f763e62fa1f0f01cdc9402b5a21b9c1d13a609 Mon Sep 17 00:00:00 2001 From: tobias Date: Thu, 6 Jun 2024 08:25:00 +0200 Subject: [PATCH] Fix dockerfile typo --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aaa9769..9a4681e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN pnpm install --production # Copy build artifacts from the build stage COPY --from=build /base/.next ./.next COPY --from=build /base/public ./public -COPY --from=build /base/next.config.js ./ +COPY --from=build /base/next.config.mjs ./ # Expose the port for the application EXPOSE 3000