-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
45 lines (29 loc) · 701 Bytes
/
Dockerfile
File metadata and controls
45 lines (29 loc) · 701 Bytes
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
FROM ubuntu:20.04
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/antirez/dump1090.git
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get install -y \
build-essential \
librtlsdr-dev \
libusb-1.0-0-dev \
rtl-sdr \
libtool \
autoconf \
automake \
pkg-config \
telnet \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /dump1090
RUN make LDFLAGS="-lrtlsdr"
EXPOSE 8080 4532
WORKDIR /
RUN git clone https://github.com/Hamlib/Hamlib.git
WORKDIR /Hamlib
RUN chmod +x ./bootstrap && \
./bootstrap && \
chmod +x ./configure && \
./configure && \
make && \
make install
# COPY entrypoint.sh /entrypoint.sh
CMD ["sh"]