This repository has been archived on 2025-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
bot/Dockerfile
2023-09-23 12:51:15 +09:00

9 lines
No EOL
116 B
Docker

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