Install all small apt packages used across projects#37
Merged
Conversation
This consolidates all the `apt-get install` commands across all the importer and service Dockerfiles. Many of them installed small utilities such as compression or decompression tools, often duplicating tools that were already installed in the baseimage. After the change in this PR, only `interpolation` needs any custom `apt-get install` commands (to bring in big things like `gdal`). Everything else should now be in the baseimage. This will help keep the tooling we have available more uniform (some of our downloaders only could decompress certain formats for example), and should save a tiny amount of space across all our docker images.
40fac07 to
eed1585
Compare
missinglink
approved these changes
Dec 18, 2025
Member
missinglink
left a comment
There was a problem hiding this comment.
My understanding is that awk is a link to gawk on ubuntu, but maybe being explicit is good.
ls -lah /usr/bin/awk
lrwxrwxrwx 1 root root 21 Feb 17 2023 /usr/bin/awk -> /etc/alternatives/awk
ls -lah /etc/alternatives/awk
lrwxrwxrwx 1 root root 13 Feb 17 2023 /etc/alternatives/awk -> /usr/bin/gawkLet's try and remove the parallel dep if possible.
Other than that looks good 👍
Member
Author
|
Yup, I just pushed a change to remove |
orangejulius
added a commit
to pelias/geonames
that referenced
this pull request
Dec 18, 2025
These packages are now installed in the baseimage, so we don't need to install them here. See pelias/docker-baseimage#37
orangejulius
added a commit
to pelias/csv-importer
that referenced
this pull request
Dec 18, 2025
These packages are now installed in the baseimage, so we don't need to install them here. See pelias/docker-baseimage#37
orangejulius
added a commit
to pelias/spatial
that referenced
this pull request
Dec 18, 2025
These packages are now installed in the baseimage, so we don't need to install them here. See pelias/docker-baseimage#37
missinglink
pushed a commit
to pelias/spatial
that referenced
this pull request
Jan 12, 2026
These packages are now installed in the baseimage, so we don't need to install them here. See pelias/docker-baseimage#37
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.
This consolidates all the
apt-get installcommands across all the importer and service Dockerfiles. Many of them installed small utilities such as compression or decompression tools, often duplicating tools that were already installed in the baseimage.After the change in this PR, only
interpolationneeds any customapt-get installcommands (to bring in big things likegdal). Everything else should now be in the baseimage.This will help keep the tooling we have available more uniform (some of our downloaders only could decompress certain formats for example), and should save a tiny amount of space across all our docker images.