Skip to content
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

python3.7-nodejs14-slim tag is 3.7.10 not 3.7.11 #26

Closed
PaulMonnery opened this issue Jul 8, 2021 · 3 comments
Closed

python3.7-nodejs14-slim tag is 3.7.10 not 3.7.11 #26

PaulMonnery opened this issue Jul 8, 2021 · 3 comments

Comments

@PaulMonnery
Copy link

PaulMonnery commented Jul 8, 2021

Hi, thanks for these very usefull images!

I am currently facing an issue with the python3.7-nodejs14-slim tag. it is written on the README that the python version is 3.7.11 but it is in fact python 3.7.10, which breaks my poetry installation because of incompatible version with some packages 😬

$ docker run --rm -it nikolaik/python-nodejs:python3.7-nodejs14-slim python --version
Python 3.7.10

Is it a build step issue within the dockerfile or the readme is just not up to date?

EDIT: from python-nodejs:python3.7-nodejs16-slim, python version is indeed 3.7.11

@nikolaik
Copy link
Owner

nikolaik commented Jul 9, 2021

Hi, thanks for these very usefull images!

I'm glad you find them useful! 🤗

I am currently facing an issue with the python3.7-nodejs14-slim tag. it is written on the README that the python version is 3.7.11 but it is in fact python 3.7.10, which breaks my poetry installation because of incompatible version with some packages 😬

$ docker run --rm -it nikolaik/python-nodejs:python3.7-nodejs14-slim python --version
Python 3.7.10

What version of python do you get if you run docker run --pull=always --rm -it nikolaik/python-nodejs:python3.7-nodejs14-slim python --version? It could simply be because you have pulled the tag when the image was at pthon 3.7.10 and need to do it again to get on the latest and greatest.

If you want to pin the python version, you probably want to create your own image, since the tags are constantly evolving with new bugfix releases of python. If you just need the latest. You can run docker pull once in a while or give a little present of --pull=always to docker run.

@PaulMonnery
Copy link
Author

Running docker run --pull=always --rm -it nikolaik/python-nodejs:python3.7-nodejs14-slim python --version solved the problem, thanks!

Indeed, I will maybe have to build my own images if it breaks on each new release 🤔 I'll see on next release then!

@nikolaik
Copy link
Owner

Glad it worked out!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants