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
This commit is contained in:
Boyd Kelly 2019-07-26 18:49:04 +00:00 committed by Simon Michael
parent de1e4a40cd
commit da4b4dad88

View File

@ -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/