forked from zaclys/searxng
Better Dockerfile
This commit is contained in:
parent
414c4f4ca4
commit
b0587a0227
16
Dockerfile
16
Dockerfile
|
@ -8,6 +8,13 @@ WORKDIR /usr/local/searx
|
||||||
|
|
||||||
CMD ["./run.sh"]
|
CMD ["./run.sh"]
|
||||||
|
|
||||||
|
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.setting.yml' >> run.sh \
|
||||||
|
&& echo 'python searx/webapp.py' >> run.sh \
|
||||||
|
&& chmod +x run.sh
|
||||||
|
|
||||||
COPY requirements.txt /usr/local/searx/requirements.txt
|
COPY requirements.txt /usr/local/searx/requirements.txt
|
||||||
|
|
||||||
RUN apk -U add \
|
RUN apk -U add \
|
||||||
|
@ -38,17 +45,10 @@ RUN apk -U add \
|
||||||
|
|
||||||
COPY . /usr/local/searx
|
COPY . /usr/local/searx
|
||||||
|
|
||||||
RUN adduser -D -h /usr/local/searx -s /bin/sh searx searx \
|
RUN chown -R searx:searx /usr/local/searx
|
||||||
&& chown -R searx:searx /usr/local/searx
|
|
||||||
|
|
||||||
USER searx
|
USER searx
|
||||||
|
|
||||||
RUN cd /usr/local/searx \
|
RUN cd /usr/local/searx \
|
||||||
&& sed -i "s/127.0.0.1/0.0.0.0/g" searx/settings.yml \
|
&& sed -i "s/127.0.0.1/0.0.0.0/g" searx/settings.yml \
|
||||||
&& sed -i "s/ultrasecretkey/`openssl rand -hex 16`/g" searx/settings.yml
|
&& sed -i "s/ultrasecretkey/`openssl rand -hex 16`/g" searx/settings.yml
|
||||||
|
|
||||||
RUN 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.setting.yml' >> run.sh \
|
|
||||||
&& echo 'python searx/webapp.py' >> run.sh \
|
|
||||||
&& chmod +x run.sh
|
|
||||||
|
|
Loading…
Reference in New Issue