-
Notifications
You must be signed in to change notification settings - Fork 1.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
2.7/alpine3.7: Add nis libraries now that 2.7.15 is patched #281
Conversation
@@ -47,12 +47,12 @@ RUN set -ex \ | |||
libc-dev \ | |||
libffi-dev \ | |||
libnsl-dev \ | |||
openssl \ | |||
openssl-dev \ |
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 realize this now makes the openssl libs "unsorted", but the openssl builds should go away soon. Alpine 3.4 is being deprecated has been removed and Alpine 3.8's libressl should be supported by Python 3.7.
705f4a0
to
8d755d1
Compare
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.
Adding libnsl
and libtirpc
seems fine to me since this follows the same logic used in the python:3.x
images:
Lines 162 to 164 in f38c92b
if [[ "$variant" == alpine* ]] && [[ "$variant" != alpine3.7 ]]; then | |
sed -ri -e '/libnsl-dev/d' -e '/libtirpc-dev/d' "$dir/Dockerfile" | |
fi |
Sorting of ssl
library is fine as well (more correct in more places).
Size difference for reference
|
Also relevant: https://github.com/tiran/peps/blob/ba2635cb59cd97264905ce32ef85f9456c1a5297/pep-9999.rst#nis (movement in Python upstream to remove |
- `bash`: 4.4.23 - `ghost`: 1.23.1 - `julia`: 0.6.3 - `matomo`: GPG race conditions (matomo-org/docker#105) - `memcached`: `extstore` (docker-library/memcached#38) - `mongo`: 4.0.0~rc2 - `openjdk`: remove 9 (docker-library/openjdk#199), add 10 for Windows (docker-library/openjdk#200), 11-ea+16 - `owncloud`: update PECL exts (docker-library/owncloud#102) - `percona`: 5.7.22, 5.6.40 - `php`: fix `wget: error getting response: Connection reset by peer` - `piwik`: GPG race conditions (matomo-org/docker#105) - `python`: add `nis` nonsense to 2.7 (docker-library/python#281), 3.7.0b5 - `rocket.chat`: 0.65.1 - `ruby`: 2.6.0-preview2 - `wordpress`: update GPG for wp-cli
2.7/alpine3.7: Add nis libraries now that 2.7.15 is patched
The final fix for #247.