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 /web/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 'web/Dockerfile')
| -rw-r--r-- | web/Dockerfile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/Dockerfile b/web/Dockerfile index 0161342..1193808 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -1,15 +1,15 @@ -FROM oven/bun:latest +FROM node:latest WORKDIR /web -COPY bun.lockb . +COPY yarn.lock . COPY package.json . -RUN bun install +RUN yarn install COPY . . -RUN bun run build +RUN yarn run build -ENTRYPOINT ["bun", "start"] +ENTRYPOINT ["yarn", "start"] |
