8 lines
162 B
Plaintext
8 lines
162 B
Plaintext
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"]
|