alexcdev1 6 months ago
parent
commit
84ad56ecf6
2 changed files with 2 additions and 1 deletions
  1. 1 1
      Dockerfile.prod
  2. 1 0
      next.config.mjs

+ 1 - 1
Dockerfile.prod

@@ -52,4 +52,4 @@ EXPOSE 3000
 ENV PORT 3000
 ENV NEXT_TELEMETRY_DISABLED 1
 
-CMD ["node", "server.js"]
+CMD ["sh", "-c", "if [ -d .next/standalone ]; then node .next/standalone/server.js; else node_modules/.bin/next start; fi"]

+ 1 - 0
next.config.mjs

@@ -1,5 +1,6 @@
 /** @type {import('next').NextConfig} */
 const nextConfig = {
+  output: "standalone",
   images: {
     remotePatterns: [
       {