From e7e8cac7c2751d4084517d8f86dbb354d17d00ee Mon Sep 17 00:00:00 2001 From: pankajastro Date: Thu, 3 Jul 2025 20:32:20 +0530 Subject: [PATCH] Add env AUTO_CONVERT_TO_AF3 in dockerfile --- dev/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev/Dockerfile b/dev/Dockerfile index 67c7f033..db91dd04 100644 --- a/dev/Dockerfile +++ b/dev/Dockerfile @@ -1,14 +1,16 @@ -FROM quay.io/astronomer/astro-runtime:12.7.0 +# FROM quay.io/astronomer/astro-runtime:12.7.0 +FROM astrocrpublic.azurecr.io/runtime:3.0-4 ENV CONFIG_ROOT_DIR=/usr/local/airflow/dags/ +ENV AUTO_CONVERT_TO_AF3=True USER root RUN apt-get update && apt-get install -y jq -USER astro - # Install uv for faster package management RUN pip install uv RUN uv pip install --system /usr/local/airflow/include/*.whl + +USER astro