1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-10-16 13:50:46 +00:00
docker-adsb-ultrafeeder/Dockerfile

82 lines
3.2 KiB
Docker
Raw Normal View History

2024-05-18 20:39:49 +00:00
FROM ghcr.io/sdr-enthusiasts/docker-baseimage:base AS build
RUN set -x && \
apt-get update -y && \
2024-05-23 22:21:21 +00:00
apt-get install -q -o Dpkg::Options::="--force-confnew" -y \
2024-05-23 22:28:10 +00:00
gcc && \
2024-05-18 20:39:49 +00:00
cd / && \
2024-05-24 13:35:54 +00:00
curl -sSL https://raw.githubusercontent.com/sdr-enthusiasts/docker-adsb-ultrafeeder/main/downloads/distance-in-meters.c -o /distance-in-meters.c && \
gcc -static distance-in-meters.c -o distance -lm -Ofast
2024-05-18 20:39:49 +00:00
2023-03-22 16:15:26 +00:00
FROM ghcr.io/sdr-enthusiasts/docker-tar1090:latest
2023-03-21 19:56:02 +00:00
2023-03-23 17:29:49 +00:00
LABEL org.opencontainers.image.source = "https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder"
2023-03-21 19:56:02 +00:00
2023-03-27 17:21:53 +00:00
ENV URL_MLAT_CLIENT_REPO="https://github.com/wiedehopf/mlat-client.git" \
2023-03-21 19:56:02 +00:00
PRIVATE_MLAT="false" \
MLAT_INPUT_TYPE="auto"
2024-06-01 18:19:19 +00:00
SHELL ["/bin/bash", "-x", "-o", "pipefail", "-c"]
RUN TEMP_PACKAGES=() && \
2023-03-21 19:56:02 +00:00
KEPT_PACKAGES=() && \
# Git and net-tools are needed to install and run @Mikenye's HealthCheck framework
2023-03-21 19:56:02 +00:00
KEPT_PACKAGES+=(git) && \
#
# Needed to run the mlat_client:
2023-08-26 23:25:51 +00:00
# POST_PACKAGES+=(python3-minimal) && \
#
# These are needed to compile and install the mlat_client:
2023-08-26 23:25:51 +00:00
KEPT_PACKAGES+=(python3) && \
KEPT_PACKAGES+=(python3-pkg-resources) && \
2023-03-21 19:56:02 +00:00
TEMP_PACKAGES+=(build-essential) && \
TEMP_PACKAGES+=(debhelper) && \
TEMP_PACKAGES+=(python3-dev) && \
TEMP_PACKAGES+=(python3-distutils-extra) && \
TEMP_PACKAGES+=(python3-pip) && \
TEMP_PACKAGES+=(python3-setuptools) && \
TEMP_PACKAGES+=(python3-wheel) && \
#
# packages needed for debugging - these can stay out in production builds:
2023-04-28 14:04:43 +00:00
#KEPT_PACKAGES+=(procps nano aptitude psmisc) && \
# Install all these packages:
2023-03-21 19:56:02 +00:00
apt-get update -q -y && \
2023-04-28 14:04:43 +00:00
apt-get install -o Dpkg::Options::="--force-confnew" -y --no-install-recommends -q \
"${KEPT_PACKAGES[@]}" \
"${TEMP_PACKAGES[@]}" && \
#
# Compile and Install the mlat_client
2023-03-21 19:56:02 +00:00
mkdir -p /git && \
pushd /git && \
git clone --depth 1 $URL_MLAT_CLIENT_REPO && \
cd mlat-client && \
./setup.py install && \
ln -s /usr/local/bin/mlat-client /usr/bin/mlat-client && \
2023-03-21 19:56:02 +00:00
popd && \
rm -rf /git && \
#
# Clean up and install POST_PACKAGES:
apt-get remove -q -y "${TEMP_PACKAGES[@]}" && \
2023-08-26 23:25:51 +00:00
# apt-get install -o Dpkg::Options::="--force-confnew" -y --no-install-recommends -q \
# ${POST_PACKAGES[@]} && \
2023-03-21 19:56:02 +00:00
apt-get autoremove -q -o APT::Autoremove::RecommendsImportant=0 -o APT::Autoremove::SuggestsImportant=0 -y && \
2024-05-31 19:16:12 +00:00
find /usr | grep -E "/__pycache__$" | xargs rm -rf || true && \
2023-03-21 19:56:02 +00:00
apt-get clean -q -y && \
rm -rf /src /tmp/* /var/lib/apt/lists/* /git /var/cache/* && \
#
# Do some stuff for kx1t's convenience:
2023-03-21 19:56:02 +00:00
echo "alias dir=\"ls -alsv\"" >> /root/.bashrc && \
echo "alias nano=\"nano -l\"" >> /root/.bashrc
COPY rootfs/ /
2024-05-23 22:28:10 +00:00
COPY --from=build /distance /usr/local/bin/distance
2023-03-21 19:56:02 +00:00
# Add Container Version
RUN set -x && \
branch="##BRANCH##" && \
[[ "${branch:0:1}" == "#" ]] && branch="main" || true && \
git clone --depth=1 -b "$branch" https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git /tmp/clone && \
2023-03-21 19:56:02 +00:00
pushd /tmp/clone && \
echo "$(TZ=UTC date +%Y%m%d-%H%M%S)_$(git rev-parse --short HEAD)_$(git branch --show-current)" > /.CONTAINER_VERSION && \
popd && \
rm -rf /tmp/*