Add files via upload

This commit is contained in:
2022-11-22 19:53:50 +01:00
committed by GitHub
parent e4415f9180
commit 553fcd87cf
12 changed files with 750 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:latest
RUN apt update -y && apt upgrade -y
RUN apt-get install build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev -y
RUN mkdir -p /usr/src/bot
WORKDIR /usr/src/bot
COPY package.json /usr/src/bot
RUN npm install
COPY . /usr/src/bot
CMD ["node", "sharding.js"]