diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-26 20:58:47 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-26 20:58:47 +0300 |
commit | 7fab17dd8a48fe335f1aff0b9d5b63fad269bdbb (patch) | |
tree | 503c73853e50cd84b3330813fbb721fce7056c97 /dump1090 | |
parent | add more comments on Docker magic (diff) | |
download | fr24feed-7fab17dd8a48fe335f1aff0b9d5b63fad269bdbb.tar.gz fr24feed-7fab17dd8a48fe335f1aff0b9d5b63fad269bdbb.zip |
dump1090: install missing dependencies
Diffstat (limited to '')
-rw-r--r-- | dump1090/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dump1090/Dockerfile b/dump1090/Dockerfile index 971e912..aa3562c 100644 --- a/dump1090/Dockerfile +++ b/dump1090/Dockerfile @@ -35,7 +35,9 @@ COPY --from=builder ["/tmp/dump1090-fa.deb", "./"] RUN apt-get update -yq && \ # Supervisor to run both dump1090-fa and lighttpd: - apt-get install -yq --no-install-recommends supervisor && \ + # lighty-enable-mod depends on Term/ReadLine.pm, which isn't listed as a + # dependency, which is a bug: + apt-get install -yq --no-install-recommends supervisor libterm-readline-gnu-perl && \ apt-get install -yq ./dump1090-fa.deb && \ rm -- ./dump1090-fa.deb |