Files
first-interaction/Dockerfile
T
2020-10-27 16:07:20 -04:00

8 lines
106 B
Docker

FROM node:14.4.0-buster-slim
COPY . .
RUN npm install --production
ENTRYPOINT ["node", "/lib/main.js"]