aboutsummaryrefslogtreecommitdiff
path: root/bot/Dockerfile
diff options
context:
space:
mode:
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"]