
# STAGE: builder (for installing dependencies and building the application)
FROM node:18-alpine AS builder
WORKDIR /app
COPY package.json  /app/
RUN npm install
COPY . .
