ashb commented on PR #49721:
URL: https://github.com/apache/airflow/pull/49721#issuecomment-2829977945
If you are using the FAB auth manger, then you will need the patch for
#49724 too:
```Dockerfile
FROM apache/airflow:3.0.0
USER root
RUN apt update && apt install -y patch patchutils
RUN set -ex; \
cd /home/airflow/.local/lib/python3.12/site-packages/airflow; \
curl
https://patch-diff.githubusercontent.com/raw/apache/airflow/pull/49721.patch \
| filterdiff -p1 -i 'airflow-core/src/airflow/*' | patch -p4 -u
--verbose; \
curl
https://patch-diff.githubusercontent.com/raw/apache/airflow/pull/49724.patch \
| patch -p5 -u --verbose
USER airflow
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]