FROM node:18.18.2

WORKDIR /app

COPY . .

RUN npm install

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