Closed
Description
I am requesting that the alpine related tags without explicit version always refer to the latest stable alpine release. Currently this should be 3.7.
In https://github.com/docker-library/python/blob/master/generate-stackbrew-library.sh#L17 this already seems to be done. But it's unclear to me why Python 3.6 is explicitly being mapped to Alpine 3.4:
https://github.com/docker-library/python/blob/master/generate-stackbrew-library.sh#L22
defaultAlpineVersion='3.7'
declare -A alpineVersions=(
[2.7]='3.4'
[3.4]='3.4'
[3.5]='3.4'
[3.6]='3.4'
Desired: 3-alpine
and alpine
(and any other -alpine
) tags should used latest stable python and alpine releases. Currently that is Python 3.6.4
and Alpine 3.7
.
Current: 3-alpine
and alpine
tags use Alpine 3.4
, several versions behind.