From da4b4dad88b5f0cb469b856d16adb82a4779f70c Mon Sep 17 00:00:00 2001 From: Boyd Kelly Date: Fri, 26 Jul 2019 18:49:04 +0000 Subject: [PATCH] Update Dockerfile (#1075) root@d579ecf6dca7:/# hledger hledger: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory I know your are super busy. I hope this trivial change is ok. hledger runs fine once libtinfo5 package is installed in docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c69b35efa..3621a3bf3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN stack install FROM debian:stable-slim -RUN apt-get update && apt-get install libgmp10 && rm -rf /var/lib/apt/lists +RUN apt-get update && apt-get install libtinfo5 libgmp10 && rm -rf /var/lib/apt/lists COPY --from=dev /root/.local/bin/hledger* /usr/bin/