From 952f743b691e30be94c1d8373e61341e77e7f390 Mon Sep 17 00:00:00 2001 From: Ron <45816308+rjaegers@users.noreply.github.com> Date: Thu, 7 Dec 2023 15:29:09 +0100 Subject: [PATCH] chore: add no-op healthcheck (#238) --- .devcontainer/Dockerfile | 2 ++ .trivyignore | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 47f3b914..032a840e 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -10,6 +10,8 @@ ARG XWIN_VERSION=0.5.0 ARG DEBIAN_FRONTEND=noninteractive +HEALTHCHECK NONE + SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Install the base system with all tool dependencies diff --git a/.trivyignore b/.trivyignore index 565467de..4d0c37f7 100644 --- a/.trivyignore +++ b/.trivyignore @@ -1,7 +1,3 @@ # See: https://avd.aquasec.com/misconfig/dockerfile/general/avd-ds-0002/ # We allow root access in our container that we use for development purposes DS002 - -# See: https://avd.aquasec.com/misconfig/dockerfile/general/avd-ds-0026/ -# We don't require a HEALTHCHECK for our devcontainer -DS026