Files
first-interaction/Dockerfile

8 lines
107 B
Docker
Raw Normal View History

FROM node:18.18.2-buster-slim
2019-08-02 17:15:36 +00:00
COPY . .
RUN npm install --production
ENTRYPOINT ["node", "/lib/main.js"]