george-zubrienko commented on issue #30884: URL: https://github.com/apache/airflow/issues/30884#issuecomment-1524972624
This is the Dockerfile content for our image: ``` FROM apache/airflow:2.4.3-python3.9 COPY requirements.txt /tmp/requirements.txt RUN pip3 install --user --no-cache -r /tmp/requirements.txt USER 0 RUN rm /tmp/requirements.txt USER airflow ``` I don't have SHA unfortunately, and we do not rebuild images on a regular basis, so it might not be exactly the one available on Dockerhub right now. Update to 2.5.3 is simple: ``` FROM apache/airflow:2.5.3-python3.9 ... ``` And poetry dependency spec I have provided in the issue description. -- 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]
