mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-31 12:39:01 +00:00
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:
parent
4651a58980
commit
33f2fdd49c
@ -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 \
|
||||
|
@ -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 \
|
||||
|
@ -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 \
|
||||
|
Loading…
x
Reference in New Issue
Block a user