From 96a654043402ad7ff388e80e513f884b3dfebe15 Mon Sep 17 00:00:00 2001 From: PalmDevs Date: Wed, 24 Jul 2024 03:25:22 +0700 Subject: [PATCH] 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. --- apis/websocket/Dockerfile | 2 +- bots/discord/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apis/websocket/Dockerfile b/apis/websocket/Dockerfile index af98045..9a9db88 100644 --- a/apis/websocket/Dockerfile +++ b/apis/websocket/Dockerfile @@ -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 diff --git a/bots/discord/Dockerfile b/bots/discord/Dockerfile index 96ca47b..50ec086 100644 --- a/bots/discord/Dockerfile +++ b/bots/discord/Dockerfile @@ -6,7 +6,7 @@ FROM base AS build WORKDIR /build COPY . . RUN bun install --frozen-lockfile -RUN cd bots/discord && bun --bun run build +RUN cd bots/discord && bun run build FROM base AS release