fix(build): cant have docker in the build to build its self silly

This commit is contained in:
2026-01-13 18:00:18 -06:00
parent 9ca24a266a
commit ba4635a7a7

View File

@@ -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",