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
View File
@@ -0,0 +1,4 @@
FROM apache/airflow:2.9.2
COPY airflow/requirements.txt /requirements.txt
RUN pip install --no-cache-dir -r /requirements.txt