aboutsummaryrefslogtreecommitdiff
path: root/bot/Dockerfile
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-26 16:02:25 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-26 16:04:06 -0400
commitbc64422fdf34e512509cfc931569715828047c24 (patch)
tree11cc24121519b5d2fd4c65907e1979d6f426981b /bot/Dockerfile
parentf374c5bda7a9453266e46e77da3631d655998c68 (diff)
downloadAleeBot-bc64422fdf34e512509cfc931569715828047c24.tar.gz
AleeBot-bc64422fdf34e512509cfc931569715828047c24.tar.bz2
AleeBot-bc64422fdf34e512509cfc931569715828047c24.zip
QOTD implemented; Removed readyMsg (replaced with NODE_ENV); More activities
Diffstat (limited to 'bot/Dockerfile')
-rw-r--r--bot/Dockerfile6
1 files changed, 1 insertions, 5 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile
index c21fd47..ae74f3a 100644
--- a/bot/Dockerfile
+++ b/bot/Dockerfile
@@ -2,12 +2,8 @@ FROM oven/bun:latest
WORKDIR /bot
-COPY package.json ./
-
-COPY bun.lockb ./
+COPY . .
RUN bun install
-COPY . .
-
ENTRYPOINT ["bun", "start"]