remove mac arch from dockerfile (#11876)

This commit is contained in:
Mayur Singal 2023-06-05 19:10:22 +05:30 committed by GitHub
parent cec1c295a7
commit d867a3ab40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,7 +87,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" || $(uname -m) == "aarch64" ]]; \
RUN if [[ $(uname -m) == "arm64" ]]; \
then \
pip install "ibm-db-sa~=0.4"; \
fi