-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python Docker images are missing dbm.gnu support #151
Comments
Looks like we need
We'll still need to add the appropriate packages to slim and alpine variants here, but I've started a PR to add it to buildpack-deps. docker-library/buildpack-deps#49 |
Appears this was resolved with docker-library/buildpack-deps#49 / #153. 🎉 $ docker pull python:3
3: Pulling from library/python
Digest: sha256:4748e00099548b67f250ee6f1210f1f5675113948ed0aae48e195ad6c8e12a32
Status: Image is up to date for python:3
$ docker run -it --rm python:3
Python 3.6.5 (default, Mar 31 2018, 01:15:58)
[GCC 4.9.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbm.gnu
>>> |
Hi,
I tested multiple of the official Python 3.x Docker images and they all are missing support for dbm.gnu.
While there is a
<lib>/dbm/gnu.py
file that imports_gdbm
, the corresponding_gdbm.cpython.*.so
library in<lib>/lib-dynload/
is missing.I tested on python:3.4, python:3.5, python:3.6, python:3.4-alpine - all with the same result.
Sebastian
The text was updated successfully, but these errors were encountered: