From ca3ffe6d2274637779142552bab0910898e6eb20 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Tue, 23 Jan 2024 14:58:06 -0500 Subject: [PATCH] Add libpq library to Dockerfile for Diesel --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1ac0516..d0596f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ RUN set -eux; \ apt-get update; \ apt-get install -y --no-install-recommends \ npm \ - musl-tools; \ + musl-tools \ + libpq5; \ rm -rf /var/lib/apt/lists/* RUN npm install tailwindcss -g