From 2061c59ca1f857ae9b9744c2b873c09f18eae7a6 Mon Sep 17 00:00:00 2001 From: pelag0s Date: Mon, 14 Jan 2019 09:24:57 +0100 Subject: [PATCH] Define http proxy variables in Dockerfile before using them --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 51ecf9bd..95e21813 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.8 LABEL maintainer="searx " LABEL description="A privacy-respecting, hackable metasearch engine." -ENV BASE_URL=False IMAGE_PROXY=False +ENV BASE_URL=False IMAGE_PROXY=False HTTP_PROXY_URL= HTTPS_PROXY_URL= EXPOSE 8888 WORKDIR /usr/local/searx CMD ["/sbin/tini","--","/usr/local/searx/run.sh"]