From 2e74d863210c0d21b9e0a64576dcd24237f23f8c Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Sun, 4 May 2025 22:27:53 +0200 Subject: Rework Dockerfile (#4699) This is one of various PR to refactor the entire SearXNG Docker workflow. Switches to Python glibc based images, all dependencies are installed via pip and not from system repositories, and several minor changes. This PR will increase the image size from 194.9 MB to 345.47 MB (amd64), this is due to ARMv7 images (needs dependencies for wheels compilation and runtime (?)) and uWSGI webserver. Later PR will reduce the final image size. --- dockerfiles/uwsgi.ini | 5 ----- 1 file changed, 5 deletions(-) (limited to 'dockerfiles/uwsgi.ini') diff --git a/dockerfiles/uwsgi.ini b/dockerfiles/uwsgi.ini index dfde9109a..357d3c40a 100644 --- a/dockerfiles/uwsgi.ini +++ b/dockerfiles/uwsgi.ini @@ -3,10 +3,6 @@ # default value: [::]:8080 (see Dockerfile) http-socket = $(BIND_ADDRESS) -# Who will run the code -uid = searxng -gid = searxng - # Number of workers (usually CPU count) # default value: %k (= number of CPU core, see Dockerfile) workers = $(UWSGI_WORKERS) @@ -21,7 +17,6 @@ chmod-socket = 666 # Plugin to use and interpreter config single-interpreter = true master = true -plugin = python3 lazy-apps = true enable-threads = true -- cgit v1.2.3