refactor(build): added docker to the build so we are always updated

This commit is contained in:
2026-01-13 17:57:08 -06:00
parent f40a4acad1
commit e7a0a3ff21

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",
"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:app": "tsc",
"build:docker": "docker compose up --force-recreate --build -d",
"lint": "tsc && biome lint",