mirror of
https://github.com/searxng/searxng
synced 2024-10-30 21:20:28 +00:00
Some changes in Dockerfile:
- searx/settings.yml is the right name in second sed line - COPY requirements.txt . does not work: "Not a directory"
This commit is contained in:
parent
6a158ca2d2
commit
807588ff2f
@ -8,12 +8,12 @@ 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 'sed -i "s/image_proxy : False/image_proxy : $IMAGE_PROXY/g" searx/settings.yml' >> run.sh \
|
||||
&& echo 'sed -i "s/ultrasecretkey/`openssl rand -hex 16`/g" searx/settings.yml' >> run.sh \
|
||||
&& echo 'python searx/webapp.py' >> run.sh \
|
||||
&& chmod +x run.sh
|
||||
|
||||
COPY requirements.txt .
|
||||
COPY requirements.txt ./requirements.txt
|
||||
|
||||
RUN apk -U add \
|
||||
build-base \
|
||||
|
Loading…
Reference in New Issue
Block a user