Files
first-interaction/Dockerfile
T

8 lines
106 B
Docker
Raw Permalink Normal View History

2020-10-27 21:07:20 +01:00
FROM node:14.4.0-buster-slim
2019-08-02 17:15:36 +00:00
COPY . .
RUN npm install --production
ENTRYPOINT ["node", "/lib/main.js"]