From 6a6daf780bec0b4d70713defb7e0a7bc2d6665e5 Mon Sep 17 00:00:00 2001 From: Kishan B Date: Mon, 24 Mar 2025 18:13:11 +0530 Subject: [PATCH] Fix constraints txt permission denied issue --- docker/script/bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/script/bootstrap.sh b/docker/script/bootstrap.sh index cc9a57e4d..435c6a49a 100644 --- a/docker/script/bootstrap.sh +++ b/docker/script/bootstrap.sh @@ -66,6 +66,8 @@ fi # install mariadb_devel and its dependencies sudo rpm -ivh /mariadb_rpm/* +sudo chown airflow /*.txt + # install minimal Airflow packages sudo -u airflow pip3 install $PIP_OPTION --no-use-pep517 --constraint /constraints.txt poetry sudo -u airflow pip3 install $PIP_OPTION --constraint /constraints.txt cached-property