hackforla / peopledepot

A project to setup a datastore for people and projects at HackforLA. The link below takes you to the code documentation
https://hackforla.github.io/peopledepot/
GNU General Public License v2.0
5 stars 24 forks source link

Build issue: docker fails when trying to install postgres 13+225 #262

Closed ethanstrominger closed 3 months ago

ethanstrominger commented 4 months ago

Overview

As a developer, I want to be able to deploy docker without any fatal errors.

Solution

Remove the line that installs postgres. It may not be needed. Otherwise, update 13+225 to an appropiate value.

fyliu commented 4 months ago

Just for reference, @freaky4wrld used this solution in his PR.

-  postgresql=13+225 \
+  postgresql=13+225+deb11u1 \
fyliu commented 3 months ago

@ethanstrominger said removing this dependency also works, and indeed it worked for me. In fact, it looks like graphviz is the only required dependency.

fyliu commented 3 months ago

Fixed in 37f300562843b503deead4c6c8c85725b0e46289 There's also a PR which removes it.