2021-09-15 14:09:10 -07:00

5 lines
76 B
Docker

FROM node:latest
ADD . /app
WORKDIR /app
RUN npm ci
CMD ["node", "index.js"]