Skip to content

Commit e67f3af

Browse files
yongtangcaisq
authored andcommitted
Use 'LABEL maintainer=' in Dockerfile (#13961)
* Use 'LABEL maintainer=' in Dockerfile This fix is a follow up of 13661 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: Yong Tang <[email protected]> * Additional `MAITAINER` -> `LABEL` Signed-off-by: Yong Tang <[email protected]>
1 parent 15bd614 commit e67f3af

16 files changed

+16
-16
lines changed

tensorflow/tools/ci_build/Dockerfile.android

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:14.04
22

3-
MAINTAINER Jan Prach <[email protected]>
3+
LABEL maintainer="Jan Prach <[email protected]>"
44

55
# Copy and run the install scripts.
66
COPY install/*.sh /install/

tensorflow/tools/ci_build/Dockerfile.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# ==============================================================================
1515
FROM ubuntu:16.04
1616

17-
MAINTAINER Shanqing Cai <[email protected]>
17+
LABEL maintainer="Shanqing Cai <[email protected]>"
1818

1919
# Copy and run the install scripts.
2020
COPY install/*.sh /install/

tensorflow/tools/ci_build/Dockerfile.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:14.04
22

3-
MAINTAINER Jan Prach <[email protected]>
3+
LABEL maintainer="Jan Prach <[email protected]>"
44

55
# Copy and run the install scripts.
66
COPY install/*.sh /install/

tensorflow/tools/ci_build/Dockerfile.debian.jessie.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:jessie
22

3-
MAINTAINER Jan Prach <[email protected]>
3+
LABEL maintainer="Jan Prach <[email protected]>"
44

55
# Copy and run the install scripts.
66
COPY install/*.sh /install/

tensorflow/tools/ci_build/Dockerfile.gpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu14.04
22

3-
MAINTAINER Jan Prach <[email protected]>
3+
LABEL maintainer="Jan Prach <[email protected]>"
44

55
# In the Ubuntu 14.04 images, cudnn is placed in system paths. Move them to
66
# /usr/local/cuda

tensorflow/tools/ci_build/Dockerfile.gpu_clang

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu14.04
22

3-
MAINTAINER Ilya Biryukov <[email protected]>
3+
LABEL maintainer="Ilya Biryukov <[email protected]>"
44

55
# In the Ubuntu 14.04 images, cudnn is placed in system paths. Move them to
66
# /usr/local/cuda

tensorflow/tools/ci_build/Dockerfile.hadoop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:14.04
22

3-
MAINTAINER Jonathan Hseu <[email protected]>
3+
LABEL maintainer="Jonathan Hseu <[email protected]>"
44

55
# Copy and run the install scripts.
66
COPY install/*.sh /install/

tensorflow/tools/ci_build/Dockerfile.pi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:14.04
22

3-
MAINTAINER Jan Prach <[email protected]>
3+
LABEL maintainer="Jan Prach <[email protected]>"
44

55
# Copy and run the install scripts.
66
COPY install/*.sh /install/

tensorflow/tools/ci_build/Dockerfile.pi-python3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:14.04
22

3-
MAINTAINER Jan Prach <[email protected]>
3+
LABEL maintainer="Jan Prach <[email protected]>"
44

55
# Copy and run the install scripts.
66
COPY install/*.sh /install/

tensorflow/tools/dist_test/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
FROM ubuntu:16.04
2222

23-
MAINTAINER Shanqing Cai <[email protected]>
23+
LABEL maintainer="Shanqing Cai <[email protected]>"
2424

2525
RUN apt-get update
2626
RUN apt-get install -y \

0 commit comments

Comments
 (0)