Taragolis commented on issue #36808:
URL: https://github.com/apache/airflow/issues/36808#issuecomment-1893713248

   - https://github.com/apache/airflow/pull/36716
   
   Validate all non slim X86_64 images, the command `python -c 'import MySQLdb; 
print("OK")'` do not throw any error
   
   In addition validate custom docker build from the tag without specifying 
`INSTALL_MYSQL_CLIENT_TYPE` build arg, everything works fine
   
   ```console
   ❯ docker build . \
       --build-arg DOCKER_CONTEXT_FILES=./docker-context-files \
       --build-arg INSTALL_MYSQL_CLIENT="true" \
       --build-arg INSTALL_MSSQL_CLIENT="true" \
       --build-arg INSTALL_POSTGRES_CLIENT="true" \
       --tag "airflow-image:latest"
   [+] Building 171.4s (68/68) FINISHED                                         
                                                                  docker:default
   
   ❯ docker run -it --rm airflow-image:latest bash
   
   airflow@ab694be6c26d:/opt/airflow$ apt list *maria*
   Listing... Done
   libmariadb3-compat/now 1:10.11.6+maria~deb12 amd64 [installed,local]
   libmariadb3/now 1:10.11.6+maria~deb12 amd64 [installed,local]
   mariadb-client-core/now 1:10.11.6+maria~deb12 amd64 [installed,local]
   mariadb-client/now 1:10.11.6+maria~deb12 amd64 [installed,local]
   mariadb-common/now 1:10.11.6+maria~deb12 all [installed,local]
   
   airflow@ab694be6c26d:/opt/airflow$ python -c 'import MySQLdb; print("OK")'
   OK
   ```
   
   
   **Changes in tests, should not affect codebase**
   ---
   - https://github.com/apache/airflow/pull/36759
   - https://github.com/apache/airflow/pull/36731
   
   **Taskflow's `multiple_outputs`**
   ---
   - https://github.com/apache/airflow/pull/36652
   - https://github.com/apache/airflow/pull/36728
   
   Tested, work as expected. No errors in case of Union typing annotation in 
Python 3.10+
   
   **Decorators typing annotations**
   ---
   - https://github.com/apache/airflow/pull/36405
   - https://github.com/apache/airflow/pull/36406
   
   Looks consistent to the latest docker and k8s providers


-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to