diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-31 13:26:59 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-31 13:26:59 -0400 |
| commit | e3701fda4fb1bb0990625f19df12dd1c16bf2f44 (patch) | |
| tree | b80b8b2a176d880a900255e8607546c12e173f3f /bot/Dockerfile | |
| parent | ab72ce14c8ee1c331b1c525c42cff0bba36939a1 (diff) | |
| download | AleeBot-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/Dockerfile | 8 |
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"] |
