2021-02-23 00:52:09 +00:00
|
|
|
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
|
2017-03-09 11:29:33 +00:00
|
|
|
|
2020-12-14 20:32:35 +00:00
|
|
|
ARG VERSION=0.18.0
|
2019-07-16 19:29:15 +00:00
|
|
|
RUN mkdir -p /app/code /app/pkg
|
2017-03-09 11:29:33 +00:00
|
|
|
WORKDIR /app/code
|
|
|
|
|
2019-07-16 19:23:34 +00:00
|
|
|
RUN apt update && \
|
2020-03-04 20:30:01 +00:00
|
|
|
apt install -y python3 build-essential libxslt-dev python3-dev python3-virtualenv python3-setuptools zlib1g-dev libffi-dev libssl-dev python3-pip && \
|
2019-07-16 19:23:34 +00:00
|
|
|
rm -rf /var/cache/apt /var/lib/apt/lists
|
|
|
|
|
2020-07-10 09:02:00 +00:00
|
|
|
RUN curl -L https://github.com/asciimoo/searx/archive/v${VERSION}.tar.gz | tar -xz --strip-components 1 -f -
|
2020-03-04 14:44:11 +00:00
|
|
|
RUN pip3 install --no-cache -r /app/code/requirements.txt
|
2019-07-16 19:28:51 +00:00
|
|
|
|
|
|
|
RUN mv /app/code/searx/settings.yml /app/code/searx/settings.yml.orig && \
|
|
|
|
ln -sf /app/data/settings.yml /app/code/searx/settings.yml
|
2017-03-09 11:29:33 +00:00
|
|
|
|
2017-03-11 03:32:08 +00:00
|
|
|
RUN chown -R www-data.www-data /app/code
|
|
|
|
|
2020-07-10 09:38:27 +00:00
|
|
|
# Fix python UnicodeDecodeError
|
|
|
|
ENV LANG C.UTF-8
|
2017-03-09 11:29:33 +00:00
|
|
|
|
2019-07-16 19:29:15 +00:00
|
|
|
COPY start.sh /app/pkg/start.sh
|
2017-03-09 11:29:33 +00:00
|
|
|
|
2019-07-16 19:29:15 +00:00
|
|
|
CMD [ "/app/pkg/start.sh" ]
|