Spot/Dockerfile
spiral 56091a6df7
rewrite
this is a rewrite of the bot in typescript. detritus is used as a discord library instead of discord.js
2022-10-21 17:22:01 +00:00

11 lines
No EOL
164 B
Docker

FROM alpine:latest
RUN apk add nodejs-current npm yarn git
WORKDIR /app
COPY package.json yarn.lock /app/
RUN yarn
COPY . /app
CMD ["yarn", "ts-node", "bot.ts"]