build(Needs bump): revert building with bun explicitly

Building with only Bun causes compatibility issues, like Drizzle Kit not being to generate any schema for the database of the Discord bot.
This commit is contained in:
PalmDevs
2024-07-24 03:25:22 +07:00
parent e02c86a9c4
commit 96a6540434
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ FROM base AS build
WORKDIR /build
COPY . .
RUN bun install --frozen-lockfile
RUN cd apis/websocket && bun --bun run build
RUN cd apis/websocket && bun run build
FROM base AS release