Add Airflow deps installation (#8131)

This commit is contained in:
Pere Miquel Brull 2022-10-13 11:06:27 +02:00 committed by GitHub
parent 1f1943d2f5
commit 615b1a9647
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -49,6 +49,7 @@ COPY ingestion/operators/docker/main.py .
RUN pip install --upgrade pip
ARG INGESTION_DEPENDENCY="all"
RUN pip install --upgrade openmetadata-ingestion[airflow]
RUN pip install --upgrade openmetadata-ingestion[${INGESTION_DEPENDENCY}]
# Uninstalling psycopg2-binary and installing psycopg2 instead
# because the psycopg2-binary generates a architecture specific error

View File

@ -54,6 +54,7 @@ COPY ingestion/operators/docker/main.py .
RUN pip install --upgrade pip
ARG INGESTION_DEPENDENCY="all"
RUN pip install --upgrade ".[airflow]"
RUN pip install --upgrade ".[${INGESTION_DEPENDENCY}]"
# Uninstalling psycopg2-binary and installing psycopg2 instead