aboutsummaryrefslogtreecommitdiff
path: root/bot
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-25 23:02:18 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-25 23:02:18 -0400
commit301c45d848f7ff3ddc99b5c6d8e348b97c2b3eec (patch)
treeefac0b2977c8a49a50a2ae102383a11b7173ac02 /bot
parent2c783bdb703e4ad69c9f3f846c2c9e6a527ccc80 (diff)
downloadAleeBot-301c45d848f7ff3ddc99b5c6d8e348b97c2b3eec.tar.gz
AleeBot-301c45d848f7ff3ddc99b5c6d8e348b97c2b3eec.tar.bz2
AleeBot-301c45d848f7ff3ddc99b5c6d8e348b97c2b3eec.zip
Docker implemented
Diffstat (limited to 'bot')
-rw-r--r--bot/Dockerfile7
1 files changed, 2 insertions, 5 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile
index b5f30cd..c21fd47 100644
--- a/bot/Dockerfile
+++ b/bot/Dockerfile
@@ -2,15 +2,12 @@ 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
+RUN bun install
COPY . .
-ENTRYPOINT ["node", "bot_discord.js"]
-
+ENTRYPOINT ["bun", "start"]