russcip
russcip copied to clipboard
from-source gives: `libscip.so.9.0: cannot open shared object file: No such file or directory`
Using the new feature from-source, available since 0.3.3, I'm unable to run the built binary. Here's my MRE:
Dockerfile:
FROM rust:1.77
WORKDIR /work
RUN apt-get update && apt-get install -y cmake clang
RUN wget https://github.com/scipopt/russcip/archive/refs/tags/v0.3.3.tar.gz \
&& tar -xzvf v0.3.3.tar.gz \
&& mv russcip-0.3.3 /russcip
WORKDIR /russcip
RUN cargo build --release -F from-source --example create_and_solve
CMD ["./target/release/examples/create_and_solve"]
Build:
docker build .
Run / error:
docker run -it --rm russcip-test:latest
./target/release/examples/create_and_solve: error while loading shared libraries: libscip.so.9.0: cannot open shared object file: No such file or directory