smhood commented on issue #36998:
URL: https://github.com/apache/airflow/issues/36998#issuecomment-1910695514

   Also we are creating our own airflow image off and importing our dags there:
   Dockerfile:
   ```
   FROM apache/airflow:2.8.1-python3.11
   USER root
   RUN apt-get update && apt-get install -y --no-install-recommends grep procps
   COPY --chown=airflow:root ./dags/ $AIRFLOW_HOME/dags/
   USER airflow
   COPY requirements.txt .
   RUN pip install --no-cache-dir -r requirements.txt
   ```
   
   requirements.txt
   ```
   apache-airflow-providers-cncf-kubernetes==7.13.0
   azure-identity==1.15.0
   azure-storage-blob==12.19.0
   azure-servicebus==7.11.4
   opencensus-ext-azure==1.1.11
   pydantic==2.4.2
   pyhumps==3.8.0
   ```


-- 
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