I am trying to install postresql on a docker container based on buster. It used to work, now devops changed the base image and s*** hit the fan.
So I am running apt install postgresql postgresql-contrib
and on setup I get the following error:
o /usr/lib/postgresql/11/bin/initdb: symbol lookup error: /usr/local/lib/libpq.so.5: undefined symbol: dlsym
Error: initdb failed
Error: could not create default cluster.
ldd on libpq looks reasonable and similar to the one I got on the old image.
Where would you suggest to start looking? Anything useful I could compare between the two? The new image is meant to be multi arch to support ARM, so maybe something went wrong with the linkage there?
Thank you!