But even then, I suspect it fails because the installed libssl version is newer than what's expected:
$ docker build -t raider .
...
default-libmysqlclient-dev is already the newest version (1.0.5).
libssl-dev is already the newest version (1.1.1d-0+deb10u3).
...
error: failed to run custom build command for `openssl v0.9.24`
process didn't exit successfully: `/app/target/release/build/openssl-e0c9d0620fbd0538/build-script-build` (exit code: 101)
--- stderr
thread 'main' panicked at 'Unable to detect OpenSSL version', /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.9.24/build.rs:16:14
I'd prefer to actually not use a container but my libssl-dev version on host is newer, too. So, same result.
I'll try and see if I can bump deps versions and make them use newer libssl.
First, I think libssl-dev is missing during the build. Moved it like in this patch:
But even then, I suspect it fails because the installed libssl version is newer than what's expected:
Attached full build.log.
I'd prefer to actually not use a container but my libssl-dev version on host is newer, too. So, same result. I'll try and see if I can bump deps versions and make them use newer libssl.