8 lines
121 B
Docker

FROM node:lts-iron
WORKDIR /app
COPY package.json .
RUN npm install
COPY index.js .
ENTRYPOINT ["node"]
CMD ["index.js"]