I did a rust binary, which I compile in a ci with the rust docker image, tag rust:buster, as my server was ubuntu 18.04 Lastly, I could not start the binary on the server anymore after the last compilation. The error was :
/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by /home/xxx/.bin/ctprods)
Then I upgraded my server to ubuntu 21.10. The binary worked.
I want to fix the rust version in the ci.
Why did it stop working ?
How do I find the rust version for my server ?