aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index bfe2eca..6207fae 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,12 +1,12 @@
-FROM oven/bun:latest
+FROM node:latest
WORKDIR /bot
COPY package.json ./
-COPY bun.lockb ./
+COPY yarn.lock ./
-RUN bun install
+RUN yarn install
COPY . .