Re: [Python-Dev] find_library and issue21622

2019-02-11 Thread Javier Castillo II
This is the overarching issue: https://github.com/docker-library/python/issues/111 In short, libraries that rely on find_library to bind to libs failed to start as find_library returned nothing. In particular, a build of python and saltstack in a single container, and a few other packages when usi

Re: [Python-Dev] find_library and issue21622

2019-02-11 Thread Victor Stinner
Hi, Would you mind to elaborate "some issues trying to deploy in an alpine container"? What are you trying to do? What is the error message? Some more context: * https://github.com/python/cpython/pull/10460 "bpo-21622: ctypes.util find_library walk LD_LIBRARY_PATH" * https://bugs.python.org/issu

[Python-Dev] find_library and issue21622

2019-02-08 Thread Javier Castillo II
Ran into some issues trying to deploy in an alpine container, where I wound up coming across the issue. I found a solution ( not sure if an ideal solution can exist ) that walks the paths in the environment variable LD_LIBRARY_PATH. This was submitted in github PR 10460, but not sure if there were