raphaelauv commented on issue #31941:
URL: https://github.com/apache/airflow/issues/31941#issuecomment-1596780143
just made a little test
```Dockerfile
FROM python:3.11-slim-bookworm
ENV AIRFLOW_HOME=/usr/local/airflow
ENV PIP_NO_CACHE_DIR=TRUE
ENV PIP_DISABLE_PIP_VERSION_CHECK=TRUE
RUN useradd -ms /bin/bash -d ${AIRFLOW_HOME} airflow \
&& python3 -m pip install --upgrade pip setuptools
RUN python3 -m pip install apache-airflow==2.6.2 --constraint
"https://raw.githubusercontent.com/apache/airflow/constraints-2.6.2/constraints-3.11.txt"
```
work like a charm on a distributed container deployment ( localexecutor ) ,
tested the KPO and DockerOperator :+1:
--
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]