diff --git a/ingestion/Dockerfile b/ingestion/Dockerfile index f3efddc05e25..42bca1c53e98 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 7cc7cf25d69c..2a5a6e8fbb58 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