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

9 lines
No EOL
116 B
Docker

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