How to use postgres as accessory #518
-
Trying to use postgres as an accessory, but keep seeing the following error on the app container when trying to deploy:
Here's what I have in the Dockerfile: RUN apt-get update -qq && \
apt-get install --no-install-recommends -y build-essential curl git libvips libpq-dev node-gyp pkg-config python-is-python3 Shouldn't installing the Any suggestions? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Add the libpq5 package as well, and it should solve the issue |
Beta Was this translation helpful? Give feedback.
-
@floydj You're missing |
Beta Was this translation helpful? Give feedback.
@floydj You're missing
postgresql-client
in the Dockerfile, you'll need that in the final stage of your build.