Browse Source

Use new LABEL syntax for Dockerfile

https://docs.docker.com/engine/reference/builder/#maintainer-deprecated
Angristan 6 years ago
parent
commit
e7f7eda18c
No account linked to committer's email
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Dockerfile

+ 2
- 2
Dockerfile View File

1
 FROM alpine:3.6
1
 FROM alpine:3.6
2
-MAINTAINER searx <https://github.com/asciimoo/searx>
3
-LABEL description "A privacy-respecting, hackable metasearch engine."
2
+LABEL maintainer="searx <https://github.com/asciimoo/searx>"
3
+LABEL description="A privacy-respecting, hackable metasearch engine."
4
 
4
 
5
 ENV BASE_URL=False IMAGE_PROXY=False
5
 ENV BASE_URL=False IMAGE_PROXY=False
6
 EXPOSE 8888
6
 EXPOSE 8888