godotbot/Dockerfile

6 lines
135 B
Docker
Raw 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 . .
CMD ["node", "app/index.js"]