Files
first-interaction/Dockerfile

7 lines
105 B
Docker
Raw Normal View History

FROM node:14.4.0-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"]