mirror of
https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git
synced 2024-11-21 13:20:11 +00:00
66 lines
2.4 KiB
Docker
66 lines
2.4 KiB
Docker
FROM ghcr.io/sdr-enthusiasts/docker-tar1090:latest
|
|
|
|
LABEL org.opencontainers.image.source = "https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder"
|
|
|
|
ENV URL_MLAT_CLIENT_REPO="https://github.com/adsbxchange/mlat-client.git" \
|
|
PRIVATE_MLAT="false" \
|
|
MLAT_INPUT_TYPE="auto"
|
|
|
|
RUN set -x && \
|
|
# define packages needed for installation and general management of the container:
|
|
TEMP_PACKAGES=() && \
|
|
KEPT_PACKAGES=() && \
|
|
KEPT_PACKAGES+=(procps nano aptitude) && \
|
|
KEPT_PACKAGES+=(psmisc) && \
|
|
# Git and net-tools are needed to install and run @Mikenye's HealthCheck framework
|
|
KEPT_PACKAGES+=(git) && \
|
|
#
|
|
# Needed to run the mlat_client:
|
|
KEPT_PACKAGES+=(python3) && \
|
|
KEPT_PACKAGES+=(python3-pip) && \
|
|
KEPT_PACKAGES+=(python3-setuptools) && \
|
|
KEPT_PACKAGES+=(python3-wheel) && \
|
|
#
|
|
# These are needed to compile and install the mlat_client:
|
|
TEMP_PACKAGES+=(build-essential) && \
|
|
TEMP_PACKAGES+=(debhelper) && \
|
|
TEMP_PACKAGES+=(python3-dev) && \
|
|
TEMP_PACKAGES+=(python3-distutils-extra) && \
|
|
#
|
|
# Install all these packages:
|
|
apt-get update -q -y && \
|
|
apt-get install -o Dpkg::Options::="--force-confnew" --force-yes -y --no-install-recommends -q \
|
|
${KEPT_PACKAGES[@]} \
|
|
${TEMP_PACKAGES[@]} && \
|
|
#
|
|
# Compile and Install the mlat_client
|
|
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 && \
|
|
popd && \
|
|
rm -rf /git && \
|
|
#
|
|
# Clean up
|
|
apt-get remove -q -y ${TEMP_PACKAGES[@]} && \
|
|
apt-get autoremove -q -o APT::Autoremove::RecommendsImportant=0 -o APT::Autoremove::SuggestsImportant=0 -y && \
|
|
apt-get clean -q -y && \
|
|
rm -rf /src /tmp/* /var/lib/apt/lists/* /git && \
|
|
#
|
|
# Do some stuff for kx1t's convenience:
|
|
echo "alias dir=\"ls -alsv\"" >> /root/.bashrc && \
|
|
echo "alias nano=\"nano -l\"" >> /root/.bashrc
|
|
|
|
COPY rootfs/ /
|
|
|
|
# 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-multifeeder.git /tmp/clone && \
|
|
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/*
|