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.
On a fresh install of the repo, I was unable to build the project. The build would fail during the step
=> ERROR [postgres 2/3] RUN apt-get update && apt-get install -y --no-install-recommends
Digging deeper, it would appear the build was failing on apt calls update and install with 404 responses. I believe that is because
db/Dockerfile
is built on this no-longer maintained image: mdillon/postgis. I think that image is built on Debian 9 (stretch) which has surpassed its LTS timeframe.Fortunately, it appears there is now an official and maintained postgis image. Changing the first line of
db/Dockerfile
toFROM postgis/postgis:13-3.3
resolved my build issues.You could go ahead and skip to postgres 15 with this update, to jump to the latest stable version, but the other dockerfiles seemed to be on 13, which is why I chose that