-
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
Refactor dependencies handling to keep necessary runtime dependencies automatically #311
Refactor dependencies handling to keep necessary runtime dependencies automatically #311
Conversation
For Context OpenStack needs to test multiple python versions 2.7 and 3.4+ Adding stretcg based 3.4 containers makes this possible without adding the overhead of multiple debian versions.
… automatically, accounting for "tkinter" and "libssl" edge cases appropriately
@@ -72,6 +66,13 @@ RUN set -ex \ | |||
\ | |||
&& apt-mark auto '.*' > /dev/null \ | |||
&& apt-mark manual $savedAptMark \ | |||
&& find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' \ |
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.
…sues Also, this removes the not-recommended usage of "travis_retry" and adds "gpgconf --kill all".
Added docker-library/php#666 too, while we're at it. |
Also more Alpine 3.8 (all the Alpine 3.8 possible, in fact). |
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.
Should we remove ca-certificates? They are included on Alpine 3.8.
# install ca-certificates so that HTTPS works consistently | ||
# the other runtime dependencies for Python are installed later | ||
RUN apk add --no-cache ca-certificates | ||
|
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.
Should we remove ca-certificates? They are included on Alpine 3.8.
- `docker`: 18.06.0-ce-rc3 - `httpd`: 2.4.34 - `mariadb`: suite aliases (MariaDB/mariadb-docker#182) - `openjdk`: 11-ea+22, - `postgres`: `11~beta2-2.pgdg90+1` - `python`: dependency refactoring, Alpine 3.8 (docker-library/python#311) - `redis`: remove `wget` and `ca-certificates` from Alpine 3.8 (redis/docker-library-redis#151)
(accounting for "tkinter" and "libssl" edge cases appropriately)
Closes #309
Closes #306
Closes #303
Closes #283
(combined/refactored)
Closes #300