FROM node:18
WORKDIR /usr/src/app
COPY package*.json ./
COPY index.js ./
EXPOSE 3001
CMD ["node", "index.js"]