godotbot/Dockerfile

6 lines
131 B
Docker
Raw Permalink Normal View History

2021-03-08 22:55:20 +03:00
FROM node:14-alpine3.10
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --production
COPY . .
2021-03-08 23:19:12 +03:00
CMD ["node", "index.js"]