FROM node:18.19.1-alpine
WORKDIR /app
COPY . ./
RUN npm install npm@latest && \
npm install --silent
CMD ["npm", "run", "build"]