aboutsummaryrefslogtreecommitdiff
path: root/bot
diff options
context:
space:
mode:
Diffstat (limited to 'bot')
-rw-r--r--bot/Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile
index ae74f3a..aeda756 100644
--- a/bot/Dockerfile
+++ b/bot/Dockerfile
@@ -2,8 +2,11 @@ FROM oven/bun:latest
WORKDIR /bot
-COPY . .
+COPY bun.lockb .
+COPY package.json .
RUN bun install
+COPY . .
+
ENTRYPOINT ["bun", "start"]