aboutsummaryrefslogtreecommitdiff
path: root/bot/Dockerfile
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2026-04-20 16:19:09 -0400
committerAndrew Lee <andrew@alee14.me>2026-04-20 16:19:09 -0400
commit98805430b78fa24a7d80808c50f3c38a3a748f07 (patch)
tree6362690ecd724989867a044033bc84622f955a8a /bot/Dockerfile
parentf8b93cf133126b57d85d8a5fc424fc87ad2f4459 (diff)
downloadbnbmc-announcement-api-98805430b78fa24a7d80808c50f3c38a3a748f07.tar.gz
bnbmc-announcement-api-98805430b78fa24a7d80808c50f3c38a3a748f07.tar.bz2
bnbmc-announcement-api-98805430b78fa24a7d80808c50f3c38a3a748f07.zip
attachment support; santitized input; docker support
Diffstat (limited to 'bot/Dockerfile')
-rw-r--r--bot/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile
new file mode 100644
index 0000000..e37f276
--- /dev/null
+++ b/bot/Dockerfile
@@ -0,0 +1,12 @@
+FROM bun:latest
+
+WORKDIR /bot
+
+COPY bun.lockd .
+COPY package.json .
+
+RUN bun install
+
+COPY . .
+
+ENTRYPOINT ["bun", "index.ts"]