Browse Source

Use new LABEL syntax for Dockerfile

https://docs.docker.com/engine/reference/builder/#maintainer-deprecated
Angristan 7 years ago
parent
commit
e7f7eda18c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

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