diff --git a/ingestion/Dockerfile b/ingestion/Dockerfile index a24608c3277..da1ab33eed1 100644 --- a/ingestion/Dockerfile +++ b/ingestion/Dockerfile @@ -2,6 +2,10 @@ 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 + +# Remove expired mysql keys +RUN rm /etc/apt/sources.list.d/mysql.list + # Install Dependencies (listed in alphabetical order) ENV DEBIAN_FRONTEND=noninteractive RUN apt-get -qq update \ diff --git a/ingestion/Dockerfile.ci b/ingestion/Dockerfile.ci index 6e8eafca034..41983eb2422 100644 --- a/ingestion/Dockerfile.ci +++ b/ingestion/Dockerfile.ci @@ -2,6 +2,10 @@ 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 + +# Remove expired mysql keys +RUN rm /etc/apt/sources.list.d/mysql.list + # Install Dependencies (listed in alphabetical order) RUN apt-get -qq update \ && apt-get -qq install -y \ diff --git a/ingestion/operators/docker/Dockerfile b/ingestion/operators/docker/Dockerfile index 2fca6c00304..0a7ff364ad4 100644 --- a/ingestion/operators/docker/Dockerfile +++ b/ingestion/operators/docker/Dockerfile @@ -3,6 +3,9 @@ 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 +# Remove expired mysql keys +RUN rm /etc/apt/sources.list.d/mysql.list + # Install Dependencies (listed in alphabetical order) RUN apt-get -qq update \ && apt-get -qq install -y \