You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried building the master branch on x86_64 and found that it fails in a similar manner as @thegodone described for ARM. Making the 'postgresql-server-dev-all' replacement fixes the issue for me and allows a build. I did not have to add 'ENV DEBIAN_FRONTEND=noninteractive' to get a successful build.
It's funny that you both experienced an issue that so far I never saw, when we are supposedly all running the same code in the same container. But thanks @paconius for sharing some feedback regarding the DEBIAN_FRONTEND settings. I'll run some tests again and consider switching to use postgresql-server-dev-all.
this line is failing:
postgresql-server-dev-${postgres_version}=$(postgres -V | awk '{print $3}')* \
solution:
I replace by postgresql-server-dev-all and add this line before the apt-get
ENV DEBIAN_FRONTEND=noninteractive
The text was updated successfully, but these errors were encountered: