diff options
author | ngosang <ngosang@hotmail.es> | 2022-11-29 23:45:10 +0100 |
---|---|---|
committer | ngosang <ngosang@hotmail.es> | 2022-11-29 23:45:10 +0100 |
commit | ba61457220d788e22a26847116f6bb3848f2dcba (patch) | |
tree | aa9a2efc6a3d28366f7a467174c26e0d3ee56630 /Dockerfile | |
parent | 768659f2bdd1fbd376d809c2a727a4ea0768b973 (diff) | |
download | searxng-ba61457220d788e22a26847116f6bb3848f2dcba.tar.gz searxng-ba61457220d788e22a26847116f6bb3848f2dcba.zip |
Update base Docker image to Alpine 3.17
* Python version is unchanged 3.10.8
* This issue is fixed https://github.com/searxng/searxng-docker/issues/31
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 64aa8bcef..a2c216b34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.16 +FROM alpine:3.17 ENTRYPOINT ["/sbin/tini","--","/usr/local/searxng/dockerfiles/docker-entrypoint.sh"] EXPOSE 8080 VOLUME /etc/searxng @@ -19,7 +19,6 @@ ENV INSTANCE_NAME=searxng \ WORKDIR /usr/local/searxng - COPY requirements.txt ./requirements.txt RUN apk upgrade --no-cache \ |