# Build stage FROM node:22-alpine3.20 as build-stage WORKDIR /app COPY package*.json ./ RUN npm install COPY . .