From e3701fda4fb1bb0990625f19df12dd1c16bf2f44 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 31 Mar 2025 13:26:59 -0400 Subject: Replaced bun with yarn (synology issue) --- bot/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bot/Dockerfile') 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"] -- cgit v1.2.3