From e7a0a3ff21e4cbd299707153ea55a617bfd7aa49 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 13 Jan 2026 17:57:08 -0600 Subject: [PATCH] refactor(build): added docker to the build so we are always updated --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fa368b9..12cb945 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", + "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",