FROM node:22 WORKDIR /app COPY . . RUN npm install RUN npm run build-haditha RUN npm install -g pm2 RUN pm2 start .output/server/index.mjs --name "nuxt-app" RUN pm2 save RUN pm2 startup EXPOSE 3000 CMD ["pm2-runtime", ".output/server/index.mjs"]