diff --git a/airflow/Dockerfile b/airflow/Dockerfile index 6dd345440..f89a747a7 100644 --- a/airflow/Dockerfile +++ b/airflow/Dockerfile @@ -100,27 +100,29 @@ ENV PATH=$PATH:/bin:$HOME/app/bin ENV AIRFLOW_HOME=$HOME/airflow # Update image and install needed packages -RUN microdnf update && \ - microdnf install \ - ca-certificates \ - cyrus-sasl \ - # Needed for the gitsync functionality - git \ - libpq \ - # Needed for authentication of clients against LDAP servers - openldap \ - openldap-clients \ - # We need the openssh libs for the gitsync functionality (the clone target could be e.g. git@github.com:org/repo.git) - openssh-clients \ - openssl-libs \ - openssl-pkcs11 \ - # Airflow needs Python - python${PYTHON} \ - socat \ - unixODBC && \ - microdnf clean all && \ - rm -rf /var/cache/yum && \ -bash <