bot/Dockerfile

9 lines
109 B
Docker
Raw Normal View History

2023-01-23 14:00:35 +00:00
FROM node:16.19.0
RUN mkdir app
WORKDIR /app
COPY . .
RUN yarn install
RUN yarn build
CMD ["yarn", "start"]