-
Notifications
You must be signed in to change notification settings - Fork 3.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
{Packaging} Bump Python version to 3.10.5 #22864
Conversation
ARG PYTHON_VERSION="3.10" | ||
|
||
FROM python:${PYTHON_VERSION}-alpine3.15 | ||
FROM python:${PYTHON_VERSION}-alpine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unpin the version of Python and Alpine Linux, so that we always use the latest and avoid the necessity of frequently bumping versions (#21079).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any cache mechanism when pull images? I'm not sure whether we can always get the latest image if they use the same tag.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Locally yes. If you don't run docker pull
, existing docker image will be used, but on ADO there is no cache, so it will always pull the latest.
Packaging |
Description
Bump Python version to 3.10.5.