# syntax=docker/dockerfile:1

FROM node:25.9.0-alpine
WORKDIR /app
COPY . .
RUN npm install --production
CMD ["npm", "start"]
EXPOSE 3000
