From c3903b3f4545f62df6b2e29bb579a2d4503c758b Mon Sep 17 00:00:00 2001 From: Mayur Singal <39544459+ulixius9@users.noreply.github.com> Date: Mon, 8 Jan 2024 10:18:04 +0530 Subject: [PATCH] Minor: Fix IBM DB2 Depenency Installation Issue (#14613) --- ingestion/Dockerfile | 2 +- ingestion/Dockerfile.ci | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ingestion/Dockerfile b/ingestion/Dockerfile index b6d9e8d609b..2d7dfc9ba52 100644 --- a/ingestion/Dockerfile +++ b/ingestion/Dockerfile @@ -88,7 +88,7 @@ RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]~=${RI_VERSION}" # Temporary workaround for https://github.com/open-metadata/OpenMetadata/issues/9593 RUN echo "Image built for $(uname -m)" -RUN if [[ $(uname -m) == "arm64" ]]; \ +RUN if [[ $(uname -m) != "aarch64" ]]; \ then \ pip install "ibm-db-sa~=0.4"; \ fi diff --git a/ingestion/Dockerfile.ci b/ingestion/Dockerfile.ci index a4ac018505b..c05a0ddbe32 100644 --- a/ingestion/Dockerfile.ci +++ b/ingestion/Dockerfile.ci @@ -97,7 +97,7 @@ RUN pip install ".[${INGESTION_DEPENDENCY}]" # Temporary workaround for https://github.com/open-metadata/OpenMetadata/issues/9593 RUN echo "Image built for $(uname -m)" -RUN if [[ $(uname -m) == "arm64" ]]; \ +RUN if [[ $(uname -m) != "aarch64" ]]; \ then \ pip install "ibm-db-sa~=0.4"; \ fi