-
Notifications
You must be signed in to change notification settings - Fork 17
/
Dockerfile
107 lines (105 loc) · 5.05 KB
/
Dockerfile
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
FROM ghcr.io/sdr-enthusiasts/docker-baseimage:python
RUN set -x && \
# define packages needed for installation and general management of the container:
TEMP_PACKAGES=() && \
KEPT_PACKAGES=() && \
KEPT_PIP3_PACKAGES=() && \
KEPT_RUBY_PACKAGES=() && \
#
TEMP_PACKAGES+=(pkg-config) && \
TEMP_PACKAGES+=(git) && \
TEMP_PACKAGES+=(gcc) && \
TEMP_PACKAGES+=(python3-dev) && \
TEMP_PACKAGES+=(pkg-config) && \
#
KEPT_PACKAGES+=(unzip) && \
KEPT_PACKAGES+=(psmisc) && \
KEPT_PACKAGES+=(procps nano) && \
KEPT_PACKAGES+=(python3-numpy) && \
KEPT_PACKAGES+=(python3-pandas) && \
KEPT_PACKAGES+=(python3-dateutil) && \
KEPT_PACKAGES+=(jq) && \
KEPT_PACKAGES+=(gnuplot-nox) && \
KEPT_PACKAGES+=(lighttpd) && \
KEPT_PACKAGES+=(perl) && \
KEPT_PACKAGES+=(iputils-ping) && \
KEPT_PACKAGES+=(ruby) && \
KEPT_PACKAGES+=(php-cgi) && \
#
KEPT_PIP3_PACKAGES+=(tzlocal) && \
KEPT_PIP3_PACKAGES+=(discord-webhook==1.0.0) && \
# KEPT_PIP3_PACKAGES+=(discord-webhook) && \
KEPT_PIP3_PACKAGES+=(requests) && \
KEPT_PIP3_PACKAGES+=(geopy) && \
#
KEPT_RUBY_PACKAGES+=(twurl) && \
#
# Install all the apt, pip3, and gem (ruby) packages:
apt-get update -q && \
apt-get install -q -o APT::Autoremove::RecommendsImportant=0 -o APT::Autoremove::SuggestsImportant=0 -o Dpkg::Options::="--force-confold" -y --no-install-recommends --no-install-suggests ${TEMP_PACKAGES[@]} ${KEPT_PACKAGES[@]} && \
gem install twurl && \
pip3 install --break-system-packages --no-cache-dir ${KEPT_PIP3_PACKAGES[@]} && \
#
# Do this here while we still have git installed:
git config --global advice.detachedHead false && \
branch="##main##" && \
echo "${branch//#/}_($(git ls-remote https://github.com/sdr-enthusiasts/docker-planefence refs/heads/${branch//#/} | awk '{ print substr($1,1,7)}'))_$(date +%y-%m-%d-%T%Z)" > /root/.buildtime && \
cp -f /root/.buildtime /.VERSION && \
# Clean up
echo Uninstalling $TEMP_PACKAGES && \
apt-get remove -y -q ${TEMP_PACKAGES[@]} && \
apt-get autoremove -q -o APT::Autoremove::RecommendsImportant=0 -o APT::Autoremove::SuggestsImportant=0 -y && \
apt-get clean -y -q && \
rm -rf \
/src/* \
/tmp/* \
/var/lib/apt/lists/* \
/.dockerenv \
/git
#
COPY rootfs/ /
#
COPY ATTRIBUTION.md /usr/share/planefence/stage/attribution.txt
#
RUN set -x && \
#
#
# Install Planefence (it was copied in with /rootfs, so this is
# mainly moving files to the correct location and creating symlinks):
chmod a+x /usr/share/planefence/*.sh /usr/share/planefence/*.py /usr/share/planefence/*.pl && \
ln -s /usr/share/socket30003/socket30003.cfg /usr/share/planefence/socket30003.cfg && \
ln -s /usr/share/planefence/config_tweeting.sh /root/config_tweeting.sh && \
curl --compressed --fail -sSL -o /usr/share/planefence/airlinecodes.txt https://raw.githubusercontent.com/kx1t/planefence-airlinecodes/main/airlinecodes.txt && \
curl --compressed --fail -sSL -o /usr/share/planefence/stage/Silhouettes.zip https://github.com/rikgale/VRSOperatorFlags/raw/main/Silhouettes.zip && \
#
# Get OpenSkyDB file:
#latestfile="$(curl -L https://opensky-network.org/datasets/metadata/ | sed -n 's|.*/\(aircraft-database-complete-[0-9-]\+\.csv\).*|\1|p' | sort -ru | head -1)" && \
#safefile="aircraft-database-complete-2023-10.csv" && \
#if curl --compressed -L --fail -o "/usr/share/planefence/stage/$latestfile" "https://opensky-network.org/datasets/metadata/$latestfile"; then \
# echo "Got new OpenSkyDb - $latestfile"; \
#elif curl --compressed -L --fail -o "/usr/share/planefence/stage/$safefile)" "https://opensky-network.org/datasets/metadata/$safefile)"; then \
# echo "Couldn't download latest OpenSKyDb ($latestfile) - got one we know exists ($safefile), but it may be out of date"; \
# if [[ "$latestfile" != "$safefile" ]]; then rm -f $latestfile || true; fi \
#else \
# echo "Couldn't download OpenSKyDb - continuing without"; \
# rm -f /usr/share/planefence/stage/aircraft-database-complete-* || true; \
#fi && \
#
# Ensure the planefence and plane-alert config is available for lighttpd:
ln -sf /etc/lighttpd/conf-available/88-planefence.conf /etc/lighttpd/conf-enabled && \
ln -sf /etc/lighttpd/conf-available/88-plane-alert.conf /etc/lighttpd/conf-enabled && \
# Install dump1090.socket30003. Note - this could move to a lower layer, but we need to have rootfs copied in.
# In any case, it doesn't take much (build)time.
pushd /src/socket30003 && \
./install.pl -install /usr/share/socket30003 -data /run/socket30003 -log /run/socket30003 -output /run/socket30003 -pid /run/socket30003 && \
chmod a+x /usr/share/socket30003/*.pl && \
rm -rf /run/socket30003/install-* && \
popd && \
#
# Do some other stuff
echo "alias dir=\"ls -alsv\"" >> /root/.bashrc && \
echo "alias nano=\"nano -l\"" >> /root/.bashrc
#
# No need for SHELL and ENTRYPOINT as those are inherited from the base image
#
EXPOSE 80