Files
first-interaction/Dockerfile

8 lines
105 B
Docker
Raw Permalink Normal View History

2023-11-29 13:46:12 +00:00
FROM node:20.10-buster-slim
2019-08-02 17:15:36 +00:00
COPY . .
RUN npm install --production
ENTRYPOINT ["node", "/lib/main.js"]