1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-11-22 05:40:10 +00:00

add _nohealthcheck tag

This commit is contained in:
kx1t 2023-04-28 11:59:39 -04:00
parent 30b37108d0
commit d0e2734795

View file

@ -126,3 +126,20 @@ jobs:
push: true
tags: ghcr.io/${{ env.GHCR_IMAGE }}:telegraf
labels: ${{ steps.meta.outputs.labels }}
# Change Dockerfile to use telegraf_nohealthcheck tag of build image and disable healthcheck:
- name: change build image to use telegraf tag of docker-docker-tar1090
run: |
sed -i "s|FROM ghcr.io/sdr-enthusiasts/docker-tar1090:telegraf|FROM ghcr.io/sdr-enthusiasts/docker-tar1090:telegraf_nohealthcheck|g" ./Dockerfile
# Build "telegraf"
- name: Build & Push - telegraf
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
no-cache: true
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: ghcr.io/${{ env.GHCR_IMAGE }}:telegraf_nohealthcheck
labels: ${{ steps.meta.outputs.labels }}