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