Skip to content

Commit

Permalink
Minor: Fix IBM DB2 Depenency Installation Issue (#14613)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulixius9 committed Jan 8, 2024
1 parent c0bb113 commit 68a471c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ingestion/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ingestion/Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 68a471c

Please sign in to comment.