FROM node:21.6

COPY . .

RUN npm i
RUN npm run build

CMD ["npm", "run", "start"]