Use 'LABEL maintainer=' in Dockerfile

* Use 'LABEL maintainer=' in Dockerfile

This fix is a follow up of 13961 to replace `MAINTAINER`
with `LABEL maintainer=` in Dockerfile. The keyword
`MAINTAINER` has long been deprecated and is replaced by `LABEL`,
which is much more flexible and is easily searchable through `docker
inspect`.

This fix replaces remaining `MAINTAINER` with `LABEL`.

Signed-off-by: Charlie Lewis <clewis@iqt.org>

* Additional `MAITAINER` -> `LABEL`

Signed-off-by: Charlie Lewis <clewis@iqt.org>
This commit is contained in:
cglewis 2017-10-31 10:56:48 -07:00
parent 9a2b0983a9
commit 6eac524ef6
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
FROM ubuntu:16.04
MAINTAINER Gunhan Gulsoy <gunan@google.com>
LABEL maintainer="Gunhan Gulsoy <gunan@google.com>"
# Install make build dependencies for TensorFlow.
RUN apt-get update

View File

@ -1,5 +1,5 @@
FROM gcr.io/tensorflow/tensorflow:latest
MAINTAINER Vincent Vanhoucke <vanhoucke@google.com>
LABEL maintainer="Vincent Vanhoucke <vanhoucke@google.com>"
# Pillow needs libjpeg by default as of 3.0.
RUN apt-get update && apt-get install -y --no-install-recommends \

View File

@ -1,6 +1,6 @@
FROM ubuntu:14.04
MAINTAINER Jan Prach <jendap@google.com>
LABEL maintainer="Jan Prach <jendap@google.com>"
# Copy and run the install scripts.
COPY install/*.sh /install/