FROM node:lts-slim WORKDIR /app COPY package-lock.json /app/ COPY package.json /app/ RUN npm install COPY . /app ENTRYPOINT [ "node", "index.js" ])