-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Description
Discussed in #36230
Originally posted by furquan39 December 14, 2023
Apache Airflow version
Other 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 reproduce
Create 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
&& apt-get install -y --no-install-recommends
openssh-server
&& apt-get autoremove -yqq --purge
&& apt-get clean
&& rm -rf /var/lib/apt/lists/*`
Operating System
Debian 11
Versions of Apache Airflow Providers
No response
Deployment
Docker-Compose
Deployment details
No response
Anything else?
Seems like a similar issue to this: #20911
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
