paleolimbot commented on issue #218: URL: https://github.com/apache/sedona-db/issues/218#issuecomment-3404300639
Ok! I removed the bindgen build stuff and it `cargo build`s for me with: ```dockerfile FROM fedora:latest ENV HOME=/root WORKDIR $HOME RUN dnf install -y git rustup python3 RUN rustup-init -y RUN git clone https://github.com/apache/sedona-db WORKDIR $HOME/sedona-db RUN git remote add upstream https://github.com/apache/sedona-db.git RUN git remote -v RUN git submodule init RUN git submodule update --recursive RUN dnf install -y abseil-cpp-devel openssl-devel cmake proj-devel geos-devel python3-devel g++ ENV RUST_BACKTRACE=1 ``` (More granular commands like `cargo test -p sedona-functions` might lead to more happiness and potentially faster iteration) I'll circle back and add this and anything else you discover to the documentation...thank you for bringing this up! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
