mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-25 17:04:54 +00:00
Minor: Fix IBM DB2 Depenency Installation Issue (#14613)
This commit is contained in:
parent
a41a341aca
commit
c3903b3f45
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user