From deef51e04215dc82af64850f9b3328502dee11db Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 5 Dec 2024 17:05:30 +0100 Subject: [PATCH] Add missing dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1a1a27e..79f8053 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,6 @@ RUN tar -xf pg16.tar.gz RUN cd postgresql* && ./configure --prefix=/postgres/16 && make world-bin && make install FROM ubuntu:noble -RUN apt update && apt install -y libicu74 curl wget nano && rm -rf /var/lib/apt/lists/* +RUN apt update && apt install -y libicu74 libreadline8t64 curl wget nano && rm -rf /var/lib/apt/lists/* COPY --from=build17 /postgres/17 /postgres/17 COPY --from=build16 /postgres/16 /postgres/16 \ No newline at end of file