diff --git a/apps/frontend/Dockerfile b/apps/frontend/Dockerfile index 4f1e8d8..35f158b 100644 --- a/apps/frontend/Dockerfile +++ b/apps/frontend/Dockerfile @@ -17,4 +17,4 @@ ENV GIT_REV=${GIT_REV} EXPOSE 3000 -CMD pnpm run start \ No newline at end of file +CMD node apps/frontend/server.js \ No newline at end of file diff --git a/apps/frontend/next.config.mjs b/apps/frontend/next.config.mjs index fce698f..c2610ee 100644 --- a/apps/frontend/next.config.mjs +++ b/apps/frontend/next.config.mjs @@ -2,6 +2,7 @@ import { format } from "@formkit/tempo"; /** @type {import('next').NextConfig} */ const nextConfig = { + output: "standalone", experimental: { webpackMemoryOptimizations: true, },