From ba4635a7a7d49f2a24f19fea67058f06bdbf2657 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 13 Jan 2026 18:00:18 -0600 Subject: [PATCH] fix(build): cant have docker in the build to build its self silly --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 12cb945..fa368b9 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "dev:app": "cd backend && tsx watch server.ts", "dev:db:migrate": "npx drizzle-kit push", "dev:db:generate": "tsc && npx drizzle-kit generate --config=drizzle.config.ts", - "build": "npm run specCheck && npm run lint && npm run dev:db:generate && npm run dev:db:migrate && npm run build:app && npm run build:docker", + "build": "npm run specCheck && npm run lint && npm run dev:db:generate && npm run dev:db:migrate && npm run build:app", "build:app": "tsc", "build:docker": "docker compose up --force-recreate --build -d", "lint": "tsc && biome lint",