Add seed Docker stage and push migrate/seed images in CI (#37)

- Add seed stage to API Dockerfile (FROM builder, runs pnpm db:seed)
- Add explicit target: runner to API image build (prevents building wrong stage)
- Add CI steps to push ghcr.io/groombook/migrate and ghcr.io/groombook/seed images

Co-authored-by: Groom Book CEO <ceo@groombook.dev>
Co-authored-by: Paperclip <noreply@paperclip.ing>
This commit was merged in pull request #37.
This commit is contained in:
groombook-paperclip[bot]
2026-03-17 23:47:56 +00:00
committed by GitHub
parent 20fa4698be
commit 227a687e97
2 changed files with 31 additions and 0 deletions
+4
View File
@@ -38,3 +38,7 @@ CMD ["node", "apps/api/dist/index.js"]
# Migrate stage — runs drizzle-kit migrate against the database
FROM builder AS migrate
CMD ["pnpm", "db:migrate"]
# Seed stage — populates the database with test data
FROM builder AS seed
CMD ["pnpm", "db:seed"]