diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-03-30 14:51:40 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-30 14:51:40 +0000 |
| commit | 949378a07f7baa7ded50f15b386a72e5cd687006 (patch) | |
| tree | a38e004d304de0b2480b50bd36c3f521fbf08546 /Dockerfile | |
| parent | 9a2f26d915ee05d933a18c31bca2121658aa7ffd (diff) | |
| parent | 1ae39787c1d19a6781ad3d5cb0b2615741d9eb4b (diff) | |
Merge pull request #1900 from return42/issue-1898
export build variables / support brands
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 9885fb794..700a21ffc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ EXPOSE 8080 VOLUME /etc/searx VOLUME /var/log/uwsgi +ARG GIT_URL=unknown ARG VERSION_GITCOMMIT=unknown ARG SEARX_GIT_VERSION=unknown @@ -66,7 +67,7 @@ RUN su searx -c "/usr/bin/python3 -m compileall -q searx"; \ # Keep this argument at the end since it change each time ARG LABEL_DATE= -LABEL maintainer="searx <https://github.com/asciimoo/searx>" \ +LABEL maintainer="searx <${GIT_URL}>" \ description="A privacy-respecting, hackable metasearch engine." \ version="${SEARX_GIT_VERSION}" \ org.label-schema.schema-version="1.0" \ |