r3manoj commented on issue #48841:
URL: https://github.com/apache/airflow/issues/48841#issuecomment-2781209131
I've tried with both Airflow 2.10.4 and 2.10.5
Here's a Dockerfile:
```
FROM apache/airflow:slim-2.10.4-python3.11
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
vim \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
USER airflow
COPY ./dags /opt/airflow/dags
COPY ./requirements /opt/airflow/requirements
RUN pip install --no-cache-dir "apache-airflow==${AIRFLOW_VERSION}" -r
/opt/airflow/requirements/requirements.txt
```
requirements.txt:
```
apache-airflow-providers-amazon==9.1.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]