diff options
author | Wonderfall <wonderfall@protonmail.com> | 2020-07-11 12:07:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-11 12:07:51 +0200 |
commit | 7b19e6c5f49767a0d30453ad2947c0f2844e8eb0 (patch) | |
tree | b1acac6ebbcbe96498c218d262f467d7bd6422fc /Dockerfile | |
parent | 5165962fdc099aa47c24b69b3749eb01c8ac0e43 (diff) | |
download | searxng-7b19e6c5f49767a0d30453ad2947c0f2844e8eb0.tar.gz searxng-7b19e6c5f49767a0d30453ad2947c0f2844e8eb0.zip |
Dockerfile: upgrade base to alpine 3.12 (#1983)
Author: Wonderfall <wonderfall@targaryen.house>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 59098e03b..b750031cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.10 +FROM alpine:3.12 ENTRYPOINT ["/sbin/tini","--","/usr/local/searx/dockerfiles/docker-entrypoint.sh"] EXPOSE 8080 VOLUME /etc/searx @@ -45,6 +45,7 @@ RUN apk upgrade --no-cache \ ca-certificates \ su-exec \ python3 \ + py3-pip \ libxml2 \ libxslt \ openssl \ |