Files
first-interaction/Dockerfile

7 lines
104 B
Docker
Raw 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
2023-09-25 22:45:46 +05:30
ENTRYPOINT ["node", "/lib/main.js"]