From eb89be0f1077ea1887925131db1e0891b3b07a1e Mon Sep 17 00:00:00 2001 From: Guido Iaquinti Date: Fri, 22 Oct 2021 13:23:49 +0200 Subject: [PATCH] Add 'libpq-dev' to production.Dockerfile --- production.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/production.Dockerfile b/production.Dockerfile index 0af2f3cf07dbb..e1e43d122301d 100644 --- a/production.Dockerfile +++ b/production.Dockerfile @@ -13,7 +13,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] # install base dependencies, including node & yarn; remove unneeded build deps RUN apt-get update \ - && apt-get install -y --no-install-recommends 'curl=7.*' 'git=1:2.*' 'build-essential=12.*' \ + && apt-get install -y --no-install-recommends 'curl=7.*' 'git=1:2.*' 'build-essential=12.*' 'libpq-dev=13.*' \ && curl -sL https://deb.nodesource.com/setup_14.x | bash - \ && apt-get install -y --no-install-recommends 'nodejs=14.*' \ && npm install -g yarn@1 \