aboutsummaryrefslogtreecommitdiff
path: root/bot/Dockerfile
blob: b5f30cd64c454aabe0b45847cf1b2290c5aae2df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM oven/bun:latest

WORKDIR /bot

#RUN apt-get update && apt-get install -y build-essential libtool autoconf automake python3

COPY package.json ./

COPY bun.lockb ./

RUN bun run build

COPY . .

ENTRYPOINT ["node", "bot_discord.js"]