libremiami-search/Dockerfile

58 lines
1.7 KiB
Docker
Raw Normal View History

2018-08-19 14:17:11 +02:00
FROM alpine:3.8
LABEL maintainer="searx <https://github.com/asciimoo/searx>"
LABEL description="A privacy-respecting, hackable metasearch engine."
ENV BASE_URL=False IMAGE_PROXY=False HTTP_PROXY_URL= HTTPS_PROXY_URL=
2016-01-03 15:17:59 +01:00
EXPOSE 8888
WORKDIR /usr/local/searx
2017-02-08 23:37:52 +01:00
CMD ["/sbin/tini","--","/usr/local/searx/run.sh"]
2016-01-03 15:17:59 +01:00
2016-01-03 15:45:13 +01:00
RUN adduser -D -h /usr/local/searx -s /bin/sh searx searx \
&& echo '#!/bin/sh' >> run.sh \
&& echo 'sed -i "s|base_url : False|base_url : $BASE_URL|g" searx/settings.yml' >> run.sh \
&& echo 'sed -i "s/image_proxy : False/image_proxy : $IMAGE_PROXY/g" searx/settings.yml' >> run.sh \
2016-01-04 07:38:47 +01:00
&& echo 'sed -i "s/ultrasecretkey/`openssl rand -hex 16`/g" searx/settings.yml' >> run.sh \
&& echo 'if [ -n "$HTTP_PROXY_URL" ] || [ -n "$HTTPS_PROXY_URL" ]; then' >> run.sh \
&& echo ' sed -i "s~^# proxies :~ proxies:\\n http: ${HTTP_PROXY_URL}\\n https: ${HTTPS_PROXY_URL}\\n~" searx/settings.yml' >> run.sh \
&& echo 'fi' >> run.sh \
2016-01-03 15:45:13 +01:00
&& echo 'python searx/webapp.py' >> run.sh \
&& chmod +x run.sh
COPY requirements.txt ./requirements.txt
2016-02-09 21:02:40 +01:00
RUN echo "@commuedge http://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
&& apk -U add \
2015-12-30 11:23:45 +01:00
build-base \
python \
python-dev \
py-pip \
libxml2 \
libxml2-dev \
libxslt \
libxslt-dev \
libffi-dev \
openssl \
openssl-dev \
ca-certificates \
2016-02-09 21:02:40 +01:00
tini@commuedge \
&& pip install --upgrade pip \
2016-01-04 12:52:59 +01:00
&& pip install --no-cache -r requirements.txt \
2015-12-30 11:23:45 +01:00
&& apk del \
build-base \
python-dev \
libffi-dev \
openssl-dev \
libxslt-dev \
libxml2-dev \
openssl-dev \
ca-certificates \
&& rm -f /var/cache/apk/*
2015-01-27 23:14:05 +01:00
2016-01-04 12:52:59 +01:00
COPY . .
2016-01-03 15:17:59 +01:00
2016-01-04 12:52:59 +01:00
RUN chown -R searx:searx *
2016-01-03 15:17:59 +01:00
2015-12-30 11:23:45 +01:00
USER searx
2016-01-03 15:17:59 +01:00
2016-01-04 07:38:47 +01:00
RUN sed -i "s/127.0.0.1/0.0.0.0/g" searx/settings.yml