joeknize-bc commented on issue #49575:
URL: https://github.com/apache/airflow/issues/49575#issuecomment-2856469321
I did have to update the path to python3.12, which let the build succeed,
though I'm still seeing the old functionality for some reason (no mention of
base64 on the Snowflake add connection page).
Contents of Dockerfile:
```
FROM quay.io/astronomer/astro-runtime:12.9.0
USER root
RUN apt update && apt install -y patch patchutils
RUN set -ex; \
curl
https://patch-diff.githubusercontent.com/raw/apache/airflow/pull/49467.patch \
| filterdiff -p1 -i 'airflow*' \
| patch -u -p 2 -d /usr/local/lib/python3.12/site-packages/airflow
USER astro
```
Potentially relevant entries in requirements.txt:
```
apache-airflow-providers-snowflake==6.2.2
astronomer-providers[snowflake]==1.19.4
```
--
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]