Update Dockerfile.ci file to use new MySQL Keys (#14400)

* Update Dockerfile.ci file to use new MySQL Keys

* Update ingestion Dockerfiles files to use new MySQL Keys

* Update ingestion Dockerfiles files

* Update Dockerfiles to not hardcode the new keys

* Update comments
This commit is contained in:
Preet Shah 2023-12-15 15:46:30 +05:30 committed by GitHub
parent 4651a58980
commit 33f2fdd49c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View File

@ -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 \

View File

@ -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 \

View File

@ -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 \