aboutsummaryrefslogtreecommitdiff
path: root/bot/Dockerfile
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-27 13:54:02 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-27 13:54:02 -0400
commit966df0b6da48fccd739abb302fb24685614f7f5e (patch)
tree5dd8b7f42c6c970981c694c7aec6827921ba89d4 /bot/Dockerfile
parent7b9a58cac0b59a73562d68540292e89f57bf30cf (diff)
downloadAleeBot-966df0b6da48fccd739abb302fb24685614f7f5e.tar.gz
AleeBot-966df0b6da48fccd739abb302fb24685614f7f5e.tar.bz2
AleeBot-966df0b6da48fccd739abb302fb24685614f7f5e.zip
Docker changes
Diffstat (limited to 'bot/Dockerfile')
-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"]