From 344e63115a746997e91b7fe6c72baaec51d96af7 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 31 Mar 2025 13:16:07 -0400 Subject: Replaced bun with yarn (synology issue) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Dockerfile') 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 . . -- cgit v1.2.3