fix: psql client not found in arm dockerfile#71
Merged
mujx merged 1 commit intomujx:masterfrom Dec 13, 2022
Merged
Conversation
Postgresql client has a dependency to perl and removing perl also removes `psql`
from the container image.
Attached logs from running `apt remove perl` from a container built with this
patch:
root@3c557f7743b3:/# apt remove perl
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
libedit2 libgdbm-compat4 libgdbm6 libicu70 libllvm14 libperl5.34 libreadline8 libxml2 libxslt1.1 locales netbase perl-modules-5.34 readline-common ssl-cert tzdata ucf
Use 'apt autoremove' to remove them.
The following packages will be REMOVED:
libjson-perl perl postgresql postgresql-14 postgresql-client postgresql-client-14 postgresql-client-common postgresql-common
0 upgraded, 0 newly installed, 8 to remove and 0 not upgraded.
After this operation, 49.2 MB disk space will be freed.
Do you want to continue? [Y/n]
Related to mujx#68
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Postgresql client has a dependency to perl and removing perl also removes
psqlfrom the container image.Attached logs from running
apt remove perlfrom a container built with this patch:Related to #68