| FROM searxng/searxng:latest | |
| # Set base URL | |
| ENV SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/ | |
| # Create config directory with proper permissions | |
| RUN mkdir -p /etc/searxng && chmod 777 /etc/searxng | |
| # Copy configuration | |
| COPY ./searxng /etc/searxng | |