Files
first-interaction/Dockerfile
Jeroen Knoops a5c969ea55 Use node version 14.4.0 (#24)
Closes #23
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"]