From 69440673c9ba4daeaa0f35e88093f89a30ccfb55 Mon Sep 17 00:00:00 2001 From: BIG Folio Date: Tue, 13 May 2025 20:51:36 -0500 Subject: [PATCH] Create dockerfile --- dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 dockerfile diff --git a/dockerfile b/dockerfile new file mode 100644 index 000000000..de473e3e1 --- /dev/null +++ b/dockerfile @@ -0,0 +1,7 @@ +FROM ghcr.io/searxng/searxng:latest + +# Expose the port that SearXNG uses internally +EXPOSE 8080 + +# Start the app +CMD ["uwsgi", "--ini", "/etc/searxng/uwsgi.ini"]