FROM node:20-alpine WORKDIR /backend RUN apk add --no-cache curl COPY package*.json . RUN npm ci COPY . . CMD ["npm", "run", "start:dev"]