diff --git a/Dockerfile b/Dockerfile index 2fccfab..ba76ffb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,6 +38,6 @@ COPY --from=builder --chown=node:node /app/.next/static ./.next/static EXPOSE 3000 -ENV HOST=localhost PORT=3000 NODE_ENV=production +ENV HOST=localhost PORT=3000 CMD ["node", "server.js"] \ No newline at end of file diff --git a/package.json b/package.json index 3934984..6d705a4 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "private": true, "scripts": { "dev": "next dev", - "build": "next", + "build": "next build", "start": "node .next/standalone/server.js", "lint": "next lint", "prettier:format": "prettier --write .",