mirror of
https://github.com/DarthKilroy/Spot.git
synced 2025-12-19 18:26:48 +00:00
this is a rewrite of the bot in typescript. detritus is used as a discord library instead of discord.js
11 lines
No EOL
164 B
Docker
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"] |