bot/Dockerfile
2023-01-23 23:00:35 +09:00

9 lines
No EOL
109 B
Docker

FROM node:16.19.0
RUN mkdir app
WORKDIR /app
COPY . .
RUN yarn install
RUN yarn build
CMD ["yarn", "start"]