-
Notifications
You must be signed in to change notification settings - Fork 1.1k
3.6/alpine3.7: Build nis module now that 3.6.5 is patched #274
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
Conversation
@@ -160,8 +160,7 @@ for version in "${versions[@]}"; do | |||
|
|||
# Libraries to build the nis module available in Alpine 3.7, but also require this patch: | |||
# https://bugs.python.org/issue32521 | |||
# TODO: Remove Python version check once 2.7 and 3.6 have the patch | |||
if [[ "$variant" == alpine* ]] && [[ "$variant" != alpine3.7 || "$version" != 3.7* ]]; then | |||
if [[ "$variant" == alpine* ]] && [[ "$variant" != alpine3.7 ]]; then |
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.
Won't this also leave the libraries on python:2.7-alpine3.7
? Is that version fixed too?
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.
I did think so when I wrote this the first time, but the Python 2.7 Dockerfiles actually aren’t templated.
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.
You are correct; I forgot about these lines
Lines 135 to 136 in 33b16b4
if [[ "$version" == 2.* ]]; then | |
echo " TODO: vimdiff 3.6/$v/Dockerfile $version/$v/Dockerfile" |
- `docker` update to `18.04.0-ce-rc1` - `ghost` update to `1.22.1` - `golang` docker-library/golang#215 - `openjdk` minor Debian openjdk bumps - `php` bump to `7.2.4`, `7.1.16`, `7.0.29`, and `5.6.35` - `python` docker-library/python#274 - `tomcat` openssl `1.1.0f-3+deb9u2`
- `docker` update to `18.04.0-ce-rc1` - `ghost` update to `1.22.1` - `golang` docker-library/golang#215 - `openjdk` minor Debian openjdk bumps - `php` bump to `7.2.4`, `7.1.16`, `7.0.29`, and `5.6.35` - `python` docker-library/python#274 - `tomcat` openssl `1.1.0f-3+deb9u2`
- `docker` update to `18.04.0-ce-rc1` - `ghost` update to `1.22.1` - `golang` docker-library/golang#215 - `openjdk` minor Debian openjdk bumps - `php` bump to `7.2.4`, `7.1.16`, `7.0.29`, and `5.6.35` - `python` docker-library/python#274 - `tomcat` openssl `1.1.0f-3+deb9u2`
3.6/alpine3.7: Build nis module now that 3.6.5 is patched
Continuation of #266.
Note also there's a Python 3.7.0b3 out now...
guess the bot hasn't got to it yet.