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 <yong.tang.github@outlook.com> * Additional `MAITAINER` -> `LABEL` Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
parent
15bd614fed
commit
e67f3af48c
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:14.04
|
FROM ubuntu:14.04
|
||||||
|
|
||||||
MAINTAINER Jan Prach <jendap@google.com>
|
LABEL maintainer="Jan Prach <jendap@google.com>"
|
||||||
|
|
||||||
# Copy and run the install scripts.
|
# Copy and run the install scripts.
|
||||||
COPY install/*.sh /install/
|
COPY install/*.sh /install/
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
MAINTAINER Shanqing Cai <cais@google.com>
|
LABEL maintainer="Shanqing Cai <cais@google.com>"
|
||||||
|
|
||||||
# Copy and run the install scripts.
|
# Copy and run the install scripts.
|
||||||
COPY install/*.sh /install/
|
COPY install/*.sh /install/
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:14.04
|
FROM ubuntu:14.04
|
||||||
|
|
||||||
MAINTAINER Jan Prach <jendap@google.com>
|
LABEL maintainer="Jan Prach <jendap@google.com>"
|
||||||
|
|
||||||
# Copy and run the install scripts.
|
# Copy and run the install scripts.
|
||||||
COPY install/*.sh /install/
|
COPY install/*.sh /install/
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM debian:jessie
|
FROM debian:jessie
|
||||||
|
|
||||||
MAINTAINER Jan Prach <jendap@google.com>
|
LABEL maintainer="Jan Prach <jendap@google.com>"
|
||||||
|
|
||||||
# Copy and run the install scripts.
|
# Copy and run the install scripts.
|
||||||
COPY install/*.sh /install/
|
COPY install/*.sh /install/
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu14.04
|
FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu14.04
|
||||||
|
|
||||||
MAINTAINER Jan Prach <jendap@google.com>
|
LABEL maintainer="Jan Prach <jendap@google.com>"
|
||||||
|
|
||||||
# In the Ubuntu 14.04 images, cudnn is placed in system paths. Move them to
|
# In the Ubuntu 14.04 images, cudnn is placed in system paths. Move them to
|
||||||
# /usr/local/cuda
|
# /usr/local/cuda
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu14.04
|
FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu14.04
|
||||||
|
|
||||||
MAINTAINER Ilya Biryukov <ibiryukov@google.com>
|
LABEL maintainer="Ilya Biryukov <ibiryukov@google.com>"
|
||||||
|
|
||||||
# In the Ubuntu 14.04 images, cudnn is placed in system paths. Move them to
|
# In the Ubuntu 14.04 images, cudnn is placed in system paths. Move them to
|
||||||
# /usr/local/cuda
|
# /usr/local/cuda
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:14.04
|
FROM ubuntu:14.04
|
||||||
|
|
||||||
MAINTAINER Jonathan Hseu <jhseu@google.com>
|
LABEL maintainer="Jonathan Hseu <jhseu@google.com>"
|
||||||
|
|
||||||
# Copy and run the install scripts.
|
# Copy and run the install scripts.
|
||||||
COPY install/*.sh /install/
|
COPY install/*.sh /install/
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:14.04
|
FROM ubuntu:14.04
|
||||||
|
|
||||||
MAINTAINER Jan Prach <jendap@google.com>
|
LABEL maintainer="Jan Prach <jendap@google.com>"
|
||||||
|
|
||||||
# Copy and run the install scripts.
|
# Copy and run the install scripts.
|
||||||
COPY install/*.sh /install/
|
COPY install/*.sh /install/
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:14.04
|
FROM ubuntu:14.04
|
||||||
|
|
||||||
MAINTAINER Jan Prach <jendap@google.com>
|
LABEL maintainer="Jan Prach <jendap@google.com>"
|
||||||
|
|
||||||
# Copy and run the install scripts.
|
# Copy and run the install scripts.
|
||||||
COPY install/*.sh /install/
|
COPY install/*.sh /install/
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
MAINTAINER Shanqing Cai <cais@google.com>
|
LABEL maintainer="Shanqing Cai <cais@google.com>"
|
||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y \
|
RUN apt-get install -y \
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
MAINTAINER Shanqing Cai <cais@google.com>
|
LABEL maintainer="Shanqing Cai <cais@google.com>"
|
||||||
|
|
||||||
# Pick up some TF dependencies.
|
# Pick up some TF dependencies.
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM jpetazzo/dind
|
FROM jpetazzo/dind
|
||||||
|
|
||||||
MAINTAINER Shanqing Cai <cais@google.com>
|
LABEL maintainer="Shanqing Cai <cais@google.com>"
|
||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
MAINTAINER Shanqing Cai <cais@google.com>
|
LABEL maintainer="Shanqing Cai <cais@google.com>"
|
||||||
|
|
||||||
# Pick up some TF dependencies
|
# Pick up some TF dependencies
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
MAINTAINER Shanqing Cai <cais@google.com>
|
LABEL maintainer="Shanqing Cai <cais@google.com>"
|
||||||
|
|
||||||
# Pick up some TF dependencies
|
# Pick up some TF dependencies
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
|
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
|
||||||
|
|
||||||
MAINTAINER Gunhan Gulsoy <gunan@google.com>
|
LABEL maintainer="Gunhan Gulsoy <gunan@google.com>"
|
||||||
|
|
||||||
# It is possible to override these for releases.
|
# It is possible to override these for releases.
|
||||||
ARG TF_BRANCH=master
|
ARG TF_BRANCH=master
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
MAINTAINER Shanqing Cai <cais@google.com>
|
LABEL maintainer="Shanqing Cai <cais@google.com>"
|
||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y \
|
RUN apt-get install -y \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user