From 21d16ee275c81e1cb3ddc30197be808dde7528be Mon Sep 17 00:00:00 2001 From: mikaeld Date: Fri, 8 Sep 2023 09:08:36 -0400 Subject: [PATCH] fix: Override default apache-airflow-providers-google version to 8.11.0 --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 707e3453a..4c7c19343 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,6 +28,10 @@ USER airflow COPY requirements.txt / RUN pip install --no-cache-dir -r /requirements.txt +# Override default version from the constraints file because it is broken +# https://github.com/apache/airflow/pull/34194 +RUN pip install apache-airflow-providers-google==8.11.0 --upgrade + WORKDIR $PROJECT_DIR # deploylib expects /app/version.json, copy the file if it exists