I am building a docker image using Dockerfile and it fails at RUN yum install bind* -y --skip-broken
step and the error is as follows,
Transaction check error
file /etc/GeoIP.conf conflicts between attempted installs of geoipupdate-2.5.0-2.el7.x86_64 and GeoIP-1.5.0-13.el7.x86_64
file /usr/bin/geoipupdate conflicts between attempted installs of geoipupdate-2.5.0-2.el7.x86_64 and GeoIP-1.5.0-13.el7.x86_64
file /usr/share/man/man1/geoipupdate.1.gz conflicts between attempted installs of geoipupdate-2.5.0-2.el7.x86_64 and GeoIP-1.5.0-13.el7.x86_64
I have deleted these conflicting files manually (/etc/GeoIP.conf, /usr/bin/geoipupdate,/usr/share/man/man1/geoipupdate.1.gz), but even after that it fails with the same error. Tried running as root as well. But it did not help.
Please help to resolve this error. I am unable to build the docker image due to this.
2