aboutsummaryrefslogtreecommitdiff
path: root/bot/Dockerfile
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-31 13:26:59 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-31 13:26:59 -0400
commite3701fda4fb1bb0990625f19df12dd1c16bf2f44 (patch)
treeb80b8b2a176d880a900255e8607546c12e173f3f /bot/Dockerfile
parentab72ce14c8ee1c331b1c525c42cff0bba36939a1 (diff)
downloadAleeBot-e3701fda4fb1bb0990625f19df12dd1c16bf2f44.tar.gz
AleeBot-e3701fda4fb1bb0990625f19df12dd1c16bf2f44.tar.bz2
AleeBot-e3701fda4fb1bb0990625f19df12dd1c16bf2f44.zip
Replaced bun with yarn (synology issue)
Diffstat (limited to 'bot/Dockerfile')
-rw-r--r--bot/Dockerfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile
index aeda756..54cc592 100644
--- a/bot/Dockerfile
+++ b/bot/Dockerfile
@@ -1,12 +1,12 @@
-FROM oven/bun:latest
+FROM node:latest
WORKDIR /bot
-COPY bun.lockb .
+COPY yarn.lock .
COPY package.json .
-RUN bun install
+RUN yarn install
COPY . .
-ENTRYPOINT ["bun", "start"]
+ENTRYPOINT ["yarn", "start"]