SearXNG2 / Dockerfile
Timo123432345443's picture
Update Dockerfile
7100bf7 verified
raw
history blame contribute delete
328 Bytes
# change the following to let hc to repull latest docker image
# 20251020
FROM searxng/searxng:latest
RUN chmod 777 /etc/searxng
COPY ./searxng /etc/searxng
# uWSGI
RUN pip install uwsgi
# Gradio
RUN pip install gradio requests
WORKDIR /app
COPY app.py .
COPY start.sh .
RUN chmod +x start.sh
EXPOSE 7860
CMD ["./start.sh"]