From 20004b93bff2946d378b08ddb437eac0adcc1b1c Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 6 Nov 2025 11:57:56 +0100 Subject: [PATCH] Update Dockerfile --- t3-app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t3-app/Dockerfile b/t3-app/Dockerfile index 92be701..1faeb28 100644 --- a/t3-app/Dockerfile +++ b/t3-app/Dockerfile @@ -35,7 +35,7 @@ RUN \ if [ -f yarn.lock ]; then SKIP_ENV_VALIDATION=1 yarn build; \ elif [ -f package-lock.json ]; then SKIP_ENV_VALIDATION=1 npm run build; \ elif [ -f pnpm-lock.yaml ]; then npm install -g pnpm && SKIP_ENV_VALIDATION=1 pnpm run build; \ - elif [ -f bun.lock]; then bun run build; \ + elif [ -f bun.lock]; then bunx prisma generate && bun run build; \ else echo "Lockfile not found." && exit 1; \ fi