From 9cbaf98435ed5fa6ebd28850618ff5dbcbc84bcc Mon Sep 17 00:00:00 2001 From: Onkar Ravgan Date: Mon, 26 Jun 2023 19:04:55 +0530 Subject: [PATCH] remvoed ibm db arch (#12158) --- ingestion/Dockerfile | 2 +- ingestion/operators/docker/Dockerfile | 2 +- ingestion/operators/docker/Dockerfile-dev | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ingestion/Dockerfile b/ingestion/Dockerfile index f0fb9a09a93..076b0c60aee 100644 --- a/ingestion/Dockerfile +++ b/ingestion/Dockerfile @@ -80,7 +80,7 @@ RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==1.0.0.0.dev0" # Temporary workaround for https://github.com/open-metadata/OpenMetadata/issues/9593 RUN echo "Image built for $(uname -m)" -RUN if [[ $(uname -m) == "arm64" || $(uname -m) == "aarch64" ]]; \ +RUN if [[ $(uname -m) == "arm64" ]]; \ then \ pip install "ibm-db-sa~=0.4"; \ fi diff --git a/ingestion/operators/docker/Dockerfile b/ingestion/operators/docker/Dockerfile index 84c18aed54e..20f8c1a31cc 100644 --- a/ingestion/operators/docker/Dockerfile +++ b/ingestion/operators/docker/Dockerfile @@ -85,7 +85,7 @@ RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]~=1.0.4" # Temporary workaround for https://github.com/open-metadata/OpenMetadata/issues/9593 RUN echo "Image built for $(uname -m)" -RUN if [[ $(uname -m) == "arm64" || $(uname -m) == "aarch64" ]]; \ +RUN if [[ $(uname -m) == "arm64" ]]; \ then \ pip install "ibm-db-sa~=0.4"; \ fi diff --git a/ingestion/operators/docker/Dockerfile-dev b/ingestion/operators/docker/Dockerfile-dev index 0d79189a199..ccd12475435 100644 --- a/ingestion/operators/docker/Dockerfile-dev +++ b/ingestion/operators/docker/Dockerfile-dev @@ -88,7 +88,7 @@ COPY ingestion/operators/docker/*.py . # Temporary workaround for https://github.com/open-metadata/OpenMetadata/issues/9593 RUN echo "Image built for $(uname -m)" -RUN if [[ $(uname -m) == "arm64" || $(uname -m) == "aarch64" ]]; \ +RUN if [[ $(uname -m) == "arm64" ]]; \ then \ pip install "ibm-db-sa~=0.4"; \ fi