Docker-newbie here...
I'm tracking down a docker-compose build error for the pango gem. One of the checks shown in the mkmf.log file is:
have_package: checking for pango version (>= 1.14.0)... -------------------- no
I have pango 3.1.0 installed so the result should be "yes", But I'm wondering if the syntax of "have_package" should have a <= 1.14.0. Is this just a typo or would it be the cause of a failed build? Where can I find the actual build commands that make this check?
If the above isn't the problem, then it appears that the link process can't find the libpango1.0-dev library. I installed that manually but the library is in this directory:
./usr/share/doc/
But looking at the docker build directories, it appears that these libraries are supposed to be deep in the docker directories. I'm not sure how to install them there. The docker build log says this:
failed to run 'apt-get install -V -y libpango1.0-dev'
My other gems based on c-libs are behaving fine and don't have this problem
Any guidance will be appreciated!!