Files
first-interaction/Dockerfile
T
2023-09-25 22:45:46 +05:30

7 lines
105 B
Docker

FROM node:14.4.0-buster-slim
COPY . .
RUN npm install --production
ENTRYPOINT ["node", "/lib/main.js"]