Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/airflow/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM docker.io/apache/airflow:2.11.0-python3.12
FROM --platform=$BUILDPLATFORM docker.io/apache/airflow:2.11.2-python3.12

# Setup Airflow
ENV AIRFLOW_VERSION=2.11.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The AIRFLOW_VERSION environment variable is inconsistent with the base image version. While the base image is updated to 2.11.1, this variable is still set to 2.11.0. This will cause pip to install an older version of Airflow, which contradicts the goal of this pull request. Please update this variable to match the base image version.

ENV AIRFLOW_VERSION=2.11.1

Expand Down