aboutsummaryrefslogtreecommitdiff
path: root/bot/Dockerfile
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-04 10:05:14 -0500
committerAndrew Lee <andrew@alee14.me>2025-03-04 10:05:14 -0500
commitcc06b8ed4e4e0aef02dfd8ab15df22a57a177a0a (patch)
treedeffb57bee9fe24a8d1b8143fba603774544ee00 /bot/Dockerfile
parent11bb9ab6b30314d91209bc9888d95783cc247e98 (diff)
downloadAleeBot-cc06b8ed4e4e0aef02dfd8ab15df22a57a177a0a.tar.gz
AleeBot-cc06b8ed4e4e0aef02dfd8ab15df22a57a177a0a.tar.bz2
AleeBot-cc06b8ed4e4e0aef02dfd8ab15df22a57a177a0a.zip
Readme change; Docker; Logging
Diffstat (limited to 'bot/Dockerfile')
-rw-r--r--bot/Dockerfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile
new file mode 100644
index 0000000..b5f30cd
--- /dev/null
+++ b/bot/Dockerfile
@@ -0,0 +1,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"]
+