feat: use custom docker image for airflow to avoid runtime pip install

This commit is contained in:
2025-12-13 22:21:41 +03:00
parent 9f028d0728
commit 4cb11b4769
3 changed files with 20 additions and 15 deletions
+4 -1
View File
@@ -9,12 +9,15 @@ BOOKINGS_INIT_DAYS ?= 1
.PHONY: up stop down clean airflow-init logs gp-psql ddl-gp \
bookings-clone-demodb bookings-init bookings-psql bookings-generate-day \
dev-setup dev-sync dev-lock test lint fmt clean-venv
dev-setup dev-sync dev-lock test lint fmt clean-venv build
SHELL := /bin/bash
up:
docker compose -f docker-compose.yml up -d
build:
docker compose -f docker-compose.yml build
stop:
docker compose -f docker-compose.yml stop