From 0e28ffafc7298a3dd36bc7a3e28f54a607a361ee Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Mon, 13 Nov 2023 07:44:52 +0100 Subject: [PATCH] Fix #12406 - Ingestion image with python 3.10 --- ingestion/Dockerfile | 2 +- ingestion/Dockerfile.ci | 2 +- ingestion/operators/docker/Dockerfile | 2 +- ingestion/operators/docker/Dockerfile-dev | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ingestion/Dockerfile b/ingestion/Dockerfile index 393dfeb00340..e9b60e1f1a00 100644 --- a/ingestion/Dockerfile +++ b/ingestion/Dockerfile @@ -1,4 +1,4 @@ -FROM apache/airflow:2.6.3-python3.9 +FROM apache/airflow:2.6.3-python3.10 USER root RUN curl -sS https://packages.microsoft.com/keys/microsoft.asc | apt-key add - RUN curl -sS https://packages.microsoft.com/config/debian/11/prod.list > /etc/apt/sources.list.d/mssql-release.list diff --git a/ingestion/Dockerfile.ci b/ingestion/Dockerfile.ci index 7cc7cf25d69c..6e8eafca0342 100644 --- a/ingestion/Dockerfile.ci +++ b/ingestion/Dockerfile.ci @@ -1,4 +1,4 @@ -FROM apache/airflow:2.6.3-python3.9 +FROM apache/airflow:2.6.3-python3.10 USER root RUN curl -sS https://packages.microsoft.com/keys/microsoft.asc | apt-key add - RUN curl -sS https://packages.microsoft.com/config/debian/11/prod.list > /etc/apt/sources.list.d/mssql-release.list diff --git a/ingestion/operators/docker/Dockerfile b/ingestion/operators/docker/Dockerfile index 3ffe683cbf68..9c5c5f637456 100644 --- a/ingestion/operators/docker/Dockerfile +++ b/ingestion/operators/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-bullseye +FROM python:3.10-bullseye RUN curl -sS https://packages.microsoft.com/keys/microsoft.asc | apt-key add - RUN curl -sS https://packages.microsoft.com/config/debian/11/prod.list > /etc/apt/sources.list.d/mssql-release.list diff --git a/ingestion/operators/docker/Dockerfile-dev b/ingestion/operators/docker/Dockerfile-dev index 4b74be51630e..e25fb50ab75d 100644 --- a/ingestion/operators/docker/Dockerfile-dev +++ b/ingestion/operators/docker/Dockerfile-dev @@ -1,4 +1,4 @@ -FROM python:3.9-bullseye +FROM python:3.10-bullseye RUN curl -sS https://packages.microsoft.com/keys/microsoft.asc | apt-key add - RUN curl -sS https://packages.microsoft.com/config/debian/11/prod.list > /etc/apt/sources.list.d/mssql-release.list