blob: 971e9128dc441edde0128fc8027d79fdeef99782 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
FROM debian:stretch-slim AS builder
# Don't prompt:
ENV DEBIAN_FRONTEND=noninteractive
# Variables:
ARG DUMP1090_VERSION=3.7.2
WORKDIR /tmp
# Build the dump1090-fa package:
ADD ["https://github.com/flightaware/dump1090/archive/v${DUMP1090_VERSION}.tar.gz", "./dump1090-${DUMP1090_VERSION}.tar.gz"]
# dump1090 build dependencies (from README at https://github.com/flightaware/dump1090/blob/v3.7.2/README.md):
RUN build_deps='build-essential debhelper librtlsdr-dev pkg-config dh-systemd libncurses5-dev libbladerf-dev' && \
apt-get update -yq && \
apt-get install -yq --no-install-recommends $build_deps && \
tar xzf dump1090-${DUMP1090_VERSION}.tar.gz && \
cd -- dump1090-${DUMP1090_VERSION} && \
dpkg-buildpackage -b && \
cd -- .. && \
dump1090_arch="$( dpkg --print-architecture )" && \
mv -- dump1090-fa_${DUMP1090_VERSION}_${dump1090_arch}.deb dump1090-fa.deb
FROM debian:stretch-slim
LABEL maintainer="Egor Tensin <Egor.Tensin@gmail.com>"
# Don't prompt:
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /tmp
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 && \
apt-get install -yq ./dump1090-fa.deb && \
rm -- ./dump1090-fa.deb
# Create the /run/dump1090-fa directory, typically created by systemd:
RUN mkdir --mode=0755 /run/dump1090-fa
# Config files:
COPY ["config.js", "/usr/share/dump1090-fa/html/"]
COPY ["supervisord.conf", "/etc/supervisor/conf.d/"]
EXPOSE 80 30001 30002 30003 30004 30005 30104
CMD ["/usr/bin/supervisord", "--configuration=/etc/supervisor/conf.d/supervisord.conf"]
|