-
Apache Airflow versionOther Airflow 2 version (please specify below) If "Other Airflow 2 version" selected, which one?2.4.1 What happened?When attempting to rebuild an apache airflow image, we are getting failures during our builds when trying to run apt-get update. What you think should happen instead?The airflow image should build successfully without any errors. How to reproduceCreate a Dockerfile. Add the following lines to the Dockerfile: `FROM apache/airflow:2.4.1-python3.8 ENV SSH_PASSWD "root:Docker!" RUN pip3 install msal Authlib flask_oauthlib azure-storage-file-datalake apache-airflow-providers-databricks==3.1.0 USER root RUN apt-get update Operating SystemDebian 11 Versions of Apache Airflow ProvidersNo response DeploymentDocker-Compose Deployment detailsNo response Anything else?Seems like a similar issue to this: #20911 Are you willing to submit PR?
Code of Conduct
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 4 replies
-
Thanks for opening your first issue here! Be sure to follow the issue template! If you are willing to raise PR to address this issue please do so, no need to wait for approval. |
Beta Was this translation helpful? Give feedback.
-
I converted it to discussion thinking it was a new issue, but it seems Oracle did it again and changed the key as they did in the past - converted it back to the issue #36231 |
Beta Was this translation helpful? Give feedback.
-
Wuick workaround: USER root
RUN sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A8D3785C
RUN apt-get update .... |
Beta Was this translation helpful? Give feedback.
-
Please let me know if that fixes your issues - will make it easier to apply a permanent fix :) |
Beta Was this translation helpful? Give feedback.
-
Seems that we are hitting a cache problem - some people get old and some new key. For now workaround is this:
|
Beta Was this translation helpful? Give feedback.
Seems that we are hitting a cache problem - some people get old and some new key.
For now workaround is this: