Intall libxml2 in Dockerfile
RUN apt-get update && apt-get install -y build-essential libxml2 libxml2-dev libxmlsec1-dev
When start container, getting error: error while loading shared libraries: libxml2.so.2: cannot open shared object file: No such file or directory. How can i fix it?
Intall libxml2 in Dockerfile
RUN apt-get update && apt-get install -y build-essential libxml2 libxml2-dev libxmlsec1-dev
When start container, getting error: error while loading shared libraries: libxml2.so.2: cannot open shared object file: No such file or directory. How can i fix it?