1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-10-16 13:50:46 +00:00
This commit is contained in:
Fred Clausen 2023-08-26 17:25:51 -06:00
parent 4c05afb1b2
commit 0c956eed7f
2 changed files with 11 additions and 9 deletions

View file

@ -100,12 +100,14 @@ jobs:
# set build_latest to true if github.event.inputs.use_test_image is false
build_latest: ${{ github.event.inputs.use_test_image == 'false' || github.event.inputs.use_test_image == '' }}
build_baseimage_test: ${{ github.event.inputs.use_test_image == 'true' }}
build_baseimage_url: docker-tar1090:latest/docker-tar1090:telegraf-baseimage-test
build_baseimage_url: docker-tar1090:telegraf/docker-tar1090:telegraf-baseimage-test
# only build the entire stack if we are not using the test image
build_version_specific: false
build_platform_specific: false
build_nohealthcheck: false
docker_latest_tag: telegraf
dockerfile_changes: |
docker-tar1090:latest/docker-tar1090:telegraf
secrets:
ghcr_token: ${{ secrets.GITHUB_TOKEN }}

View file

@ -13,18 +13,18 @@ RUN set -x && \
KEPT_PACKAGES+=(git) && \
#
# Needed to run the mlat_client:
POST_PACKAGES+=(python3-minimal) && \
# POST_PACKAGES+=(python3-minimal) && \
#
# These are needed to compile and install the mlat_client:
TEMP_PACKAGES+=(python3) && \
KEPT_PACKAGES+=(python3) && \
TEMP_PACKAGES+=(build-essential) && \
TEMP_PACKAGES+=(debhelper) && \
TEMP_PACKAGES+=(python3-dev) && \
TEMP_PACKAGES+=(python3-distutils-extra) && \
TEMP_PACKAGES+=(python3-pip) && \
KEPT_PACKAGES+=(python3-dev) && \
KEPT_PACKAGES+=(python3-distutils-extra) && \
KEPT_PACKAGES+=(python3-pip) && \
KEPT_PACKAGES+=(python3-setuptools) && \
KEPT_PACKAGES+=(python3-pkg-resources) && \
TEMP_PACKAGES+=(python3-wheel) && \
KEPT_PACKAGES+=(python3-wheel) && \
#
# packages needed for debugging - these can stay out in production builds:
#KEPT_PACKAGES+=(procps nano aptitude psmisc) && \
@ -46,8 +46,8 @@ RUN set -x && \
#
# Clean up and install POST_PACKAGES:
apt-get remove -q -y ${TEMP_PACKAGES[@]} && \
apt-get install -o Dpkg::Options::="--force-confnew" -y --no-install-recommends -q \
${POST_PACKAGES[@]} && \
# apt-get install -o Dpkg::Options::="--force-confnew" -y --no-install-recommends -q \
# ${POST_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 && \