alpine 3.6

This commit is contained in:
Wonderfall
2017-05-27 01:46:23 +02:00
parent 5238f438d7
commit 338e0a290f
7 changed files with 40 additions and 30 deletions

View File

@ -1,10 +1,10 @@
FROM alpine:3.5
FROM alpine:3.6
ENV BASE_URL=False IMAGE_PROXY=False \
UID=991 GID=991
RUN echo "@community https://nl.alpinelinux.org/alpine/v3.5/community" >> /etc/apk/repositories \
&& BUILD_DEPS=" \
RUN apk -U upgrade \
&& apk add -t build-dependencies \
build-base \
python-dev \
libffi-dev \
@ -12,21 +12,20 @@ RUN echo "@community https://nl.alpinelinux.org/alpine/v3.5/community" >> /etc/a
libxml2-dev \
openssl-dev \
tar \
ca-certificates" \
&& apk -U add \
${BUILD_DEPS} \
ca-certificates \
&& apk add \
su-exec \
python \
libxml2 \
libxslt \
openssl \
tini@community \
tini \
py2-pip \
&& pip install --no-cache -r https://raw.githubusercontent.com/asciimoo/searx/master/requirements.txt \
&& mkdir /usr/local/searx && cd /usr/local/searx \
&& wget -qO- https://github.com/asciimoo/searx/archive/master.tar.gz | tar xz --strip 1 \
&& sed -i "s/127.0.0.1/0.0.0.0/g" searx/settings.yml \
&& apk del ${BUILD_DEPS} \
&& apk del build-dependencies \
&& rm -f /var/cache/apk/*
COPY run.sh /usr/local/bin/run.sh