From c6e0ad930d273b3073705285d8bc6970202527a2 Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Thu, 26 Jun 2025 14:46:59 +0200 Subject: [fix] container: remove HEALTHCHECK (#4941) This is a poorly designed instruction, which is hardcoded and cannot be easily modified or maintained on a rolling release sw like ours. This *should* be set in the SearXNG Docker Compose template, not in the image itself. The OCI format is now used since we no longer have the HEALTHCHECK on the Dockerfile. Closes https://github.com/searxng/searxng/issues/4906 Closes https://github.com/searxng/searxng/issues/4722 --- container/Dockerfile | 2 -- 1 file changed, 2 deletions(-) (limited to 'container') diff --git a/container/Dockerfile b/container/Dockerfile index d7bc83802..880ae26fc 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -60,6 +60,4 @@ VOLUME $DATA_PATH EXPOSE 8080 -HEALTHCHECK CMD wget --quiet --tries=1 --spider http://localhost:8080/healthz || exit 1 - ENTRYPOINT ["/usr/local/searxng/entrypoint.sh"] -- cgit v1.2.3