| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  | FROM alpine:3.10
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ARG VERSION_GITCOMMIT=unknow | 
					
						
							|  |  |  | ARG SEARX_GIT_VERSION=unknow | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ARG SEARX_GID=1000 | 
					
						
							|  |  |  | ARG SEARX_UID=1000 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ARG TIMESTAMP_SETTINGS=0 | 
					
						
							|  |  |  | ARG TIMESTAMP_UWSGI=0 | 
					
						
							|  |  |  | ARG LABEL_VCS_REF=
 | 
					
						
							|  |  |  | ARG LABEL_VCS_URL=
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ENV BASE_URL= \
 | 
					
						
							|  |  |  |     MORTY_KEY= \
 | 
					
						
							|  |  |  |     MORTY_URL=
 | 
					
						
							|  |  |  | EXPOSE 8080
 | 
					
						
							|  |  |  | VOLUME /etc/searx
 | 
					
						
							|  |  |  | VOLUME /var/log/uwsgi
 | 
					
						
							| 
									
										
										
										
											2015-06-10 10:50:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-03 15:17:59 +01:00
										 |  |  | WORKDIR /usr/local/searx
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | RUN addgroup -g ${SEARX_GID} searx && \
 | 
					
						
							|  |  |  |     adduser -u ${SEARX_UID} -D -h /usr/local/searx -s /bin/sh -G searx searx
 | 
					
						
							| 
									
										
										
										
											2016-01-03 15:45:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-15 21:57:34 +01:00
										 |  |  | COPY requirements.txt ./requirements.txt
 | 
					
						
							| 
									
										
										
										
											2015-06-10 10:50:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  | RUN apk -U upgrade \
 | 
					
						
							|  |  |  |  && apk add -t build-dependencies \
 | 
					
						
							| 
									
										
										
										
											2015-12-30 11:23:45 +01:00
										 |  |  |     build-base \
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  |     py3-setuptools \
 | 
					
						
							|  |  |  |     python3-dev \
 | 
					
						
							| 
									
										
										
										
											2015-12-30 11:23:45 +01:00
										 |  |  |     libffi-dev \
 | 
					
						
							|  |  |  |     libxslt-dev \
 | 
					
						
							|  |  |  |     libxml2-dev \
 | 
					
						
							|  |  |  |     openssl-dev \
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  |     tar \
 | 
					
						
							|  |  |  |     git \
 | 
					
						
							|  |  |  |  && apk add \
 | 
					
						
							| 
									
										
										
										
											2015-12-30 11:23:45 +01:00
										 |  |  |     ca-certificates \
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  |     su-exec \
 | 
					
						
							|  |  |  |     python3 \
 | 
					
						
							|  |  |  |     libxml2 \
 | 
					
						
							|  |  |  |     libxslt \
 | 
					
						
							|  |  |  |     openssl \
 | 
					
						
							|  |  |  |     tini \
 | 
					
						
							|  |  |  |     uwsgi \
 | 
					
						
							|  |  |  |     uwsgi-python3 \
 | 
					
						
							|  |  |  |  && pip3 install --upgrade pip \
 | 
					
						
							|  |  |  |  && pip3 install --no-cache -r requirements.txt \
 | 
					
						
							|  |  |  |  && apk del build-dependencies \
 | 
					
						
							| 
									
										
										
										
											2015-12-30 11:23:45 +01:00
										 |  |  |  && rm -f /var/cache/apk/*
 | 
					
						
							| 
									
										
										
										
											2015-01-27 23:14:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  | COPY --chown=searx:searx . .
 | 
					
						
							| 
									
										
										
										
											2016-01-03 15:17:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  | RUN su searx -c "/usr/bin/python3 -m compileall -q searx"; \
 | 
					
						
							|  |  |  |     touch -c --date=@${TIMESTAMP_SETTINGS} searx/settings.yml; \
 | 
					
						
							|  |  |  |     touch -c --date=@${TIMESTAMP_UWSGI} dockerfiles/uwsgi.ini; \
 | 
					
						
							|  |  |  |     if [ ! -z $VERSION_GITCOMMIT ]; then\
 | 
					
						
							|  |  |  |       echo "VERSION_STRING = VERSION_STRING + \"-$VERSION_GITCOMMIT\"" >> /usr/local/searx/searx/version.py; \
 | 
					
						
							|  |  |  |     fi
 | 
					
						
							| 
									
										
										
										
											2016-01-03 15:17:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  | ENTRYPOINT ["/sbin/tini","--","/usr/local/searx/dockerfiles/docker-entrypoint.sh"]
 | 
					
						
							| 
									
										
										
										
											2016-01-03 15:17:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  | # Keep this argument at the end since it change each time
 | 
					
						
							|  |  |  | ARG LABEL_DATE=
 | 
					
						
							|  |  |  | LABEL maintainer="searx <https://github.com/asciimoo/searx>" \
 | 
					
						
							|  |  |  |       description="A privacy-respecting, hackable metasearch engine." \
 | 
					
						
							|  |  |  |       version="${SEARX_GIT_VERSION}" \
 | 
					
						
							|  |  |  |       org.label-schema.schema-version="1.0" \
 | 
					
						
							|  |  |  |       org.label-schema.name="searx" \
 | 
					
						
							| 
									
										
										
										
											2019-08-01 07:51:09 +02:00
										 |  |  |       org.label-schema.version="${SEARX_GIT_VERSION}" \
 | 
					
						
							| 
									
										
										
										
											2019-06-29 11:59:13 +02:00
										 |  |  |       org.label-schema.url="${LABEL_VCS_URL}" \
 | 
					
						
							|  |  |  |       org.label-schema.vcs-ref=${LABEL_VCS_REF} \
 | 
					
						
							|  |  |  |       org.label-schema.vcs-url=${LABEL_VCS_URL} \
 | 
					
						
							|  |  |  |       org.label-schema.build-date="${LABEL_DATE}" \
 | 
					
						
							|  |  |  |       org.label-schema.usage="https://github.com/searx/searx-docker"
 |