FROM node:20-slim WORKDIR /app # Copy everything COPY . . # Install dependencies RUN npm ci --legacy-peer-deps # Build the app RUN npm run build # Expose port EXPOSE 3000 # Start with npm start CMD ["npm", "start"]