ashb commented on PR #49721:
URL: https://github.com/apache/airflow/pull/49721#issuecomment-2829901564

   A possible work around for anyone eager to try out 3.0.0 before we get it 
released in 3.0.1:
   
   ```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
   
   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]

Reply via email to