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
Buster image contains Python 3.7 (and not 3.8) #424
Comments
|
I took the (generated) Dockerfile from the Python repository (under: Then running the same as above in the container, I get: So Python version 3.8 is there (and 3.7, which is perhaps unexpected). I could also use my own |
|
Maybe the updated image wasn't pushed yet to Dockerhub when you had tried using it docker-library/official-images#6788 It's updated now so I'm going to close $ docker pull python:buster
buster: Pulling from library/python
4a56a430b2ba: Already exists
4b5cacb629f5: Already exists
14408c8d4f9a: Already exists
ea67eaa7dd42: Already exists
4d134ac3fe4b: Already exists
4c55f6f5d7f0: Pull complete
254e105a5240: Pull complete
24b2d397f4c8: Pull complete
b0394dbabd13: Pull complete
Digest: sha256:110dd1117dabc28bbf7bcc8f6d24ace3e999880af7772a18f0ea6a29458dcb8b
Status: Downloaded newer image for python:buster
$ docker run -it --rm python:buster bash
root@e795dace5711:/# python -V
Python 3.8.0
root@e795dace5711:/# pip --version
pip 19.3 from /usr/local/lib/python3.8/site-packages/pip (python 3.8)
root@e795dace5711:/# which -a python3.8
/usr/local/bin/python3.8
/usr/local/bin/python3.8 |
Are the images containing the newly released Python version 3.8 up and running? I understood so from the README and listed tags.
I would like to create a custom image based on the
python3.8-busterimage.I created a simple
Dockerfilewith the contents:and build the image with:
I create and enter a container from the built image and check which python versions are available:
Questions:
Remarks:
RUN pip install numpyThe text was updated successfully, but these errors were encountered: