FROM node:20-slim

WORKDIR /app

COPY package*.json ./
# Full install (not --omit=dev): the build needs esm-bundle, a devDependency.
# npm install (not ci) — these scaffolds ship no lockfile.
RUN npm install

COPY . .
RUN npm run build

EXPOSE 3000

CMD ["node", "dist/index.js"]
