Browse Source

Replace deprecated MAINTAINER by LABEL

pull/85/head
Jérôme Parmentier 7 years ago
parent
commit
c2c45be6bb
  1. 2
      beanstalkd-console/Dockerfile
  2. 2
      beanstalkd/Dockerfile
  3. 2
      hugin/Dockerfile
  4. 2
      jekyll/Dockerfile
  5. 2
      latex/Dockerfile
  6. 2
      mailcatcher/Dockerfile
  7. 2
      mysql-backup-s3/Dockerfile
  8. 2
      nginx-envtpl/Dockerfile
  9. 2
      nodejs/Dockerfile
  10. 2
      octave/Dockerfile
  11. 2
      opencv/Dockerfile
  12. 2
      postgres-backup-s3/Dockerfile
  13. 2
      postgres-restore-s3/Dockerfile
  14. 2
      redis-commander/Dockerfile
  15. 2
      rust/Dockerfile
  16. 2
      s3cmd/Dockerfile
  17. 2
      swagger-ui/Dockerfile
  18. 2
      thumbor-nginx-cors/Dockerfile

2
beanstalkd-console/Dockerfile

@ -1,5 +1,5 @@
FROM php:7-alpine
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ADD install.sh install.sh
RUN chmod +x install.sh

2
beanstalkd/Dockerfile

@ -1,5 +1,5 @@
FROM debian:wheezy
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ADD install.sh install.sh
RUN chmod +x install.sh && ./install.sh && rm install.sh

2
hugin/Dockerfile

@ -1,5 +1,5 @@
FROM debian:jessie
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ENV DEBIAN_FRONTEND noninteractive

2
jekyll/Dockerfile

@ -1,5 +1,5 @@
FROM debian:wheezy
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ENV DEBIAN_FRONTEND noninteractive

2
latex/Dockerfile

@ -1,5 +1,5 @@
FROM debian:wheezy
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ENV DEBIAN_FRONTEND noninteractive

2
mailcatcher/Dockerfile

@ -1,6 +1,6 @@
FROM ruby:2.4-alpine3.6
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
RUN set -xe \
&& apk add --no-cache \

2
mysql-backup-s3/Dockerfile

@ -1,5 +1,5 @@
FROM alpine:latest
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ADD install.sh install.sh
RUN sh install.sh && rm install.sh

2
nginx-envtpl/Dockerfile

@ -1,6 +1,6 @@
FROM debian:sid
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
RUN apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y \

2
nodejs/Dockerfile

@ -1,5 +1,5 @@
FROM debian:jessie
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ENV DEBIAN_FRONTEND noninteractive

2
octave/Dockerfile

@ -1,5 +1,5 @@
FROM debian:wheezy
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ENV DEBIAN_FRONTEND noninteractive

2
opencv/Dockerfile

@ -1,5 +1,5 @@
FROM debian:jessie
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ARG OPENCV_VERSION="3.0.0"

2
postgres-backup-s3/Dockerfile

@ -1,5 +1,5 @@
FROM alpine:3.5
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ADD install.sh install.sh
RUN sh install.sh && rm install.sh

2
postgres-restore-s3/Dockerfile

@ -1,5 +1,5 @@
FROM alpine:3.4
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ADD install.sh install.sh
RUN sh install.sh && rm install.sh

2
redis-commander/Dockerfile

@ -1,5 +1,5 @@
FROM debian:jessie
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ENV DEBIAN_FRONTEND noninteractive

2
rust/Dockerfile

@ -1,5 +1,5 @@
FROM debian:wheezy
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
# needed by cargo
ENV USER root

2
s3cmd/Dockerfile

@ -1,5 +1,5 @@
FROM alpine:3.1
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ADD install.sh install.sh
RUN sh install.sh && rm install.sh

2
swagger-ui/Dockerfile

@ -1,5 +1,5 @@
FROM node:alpine
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
ENV VERSION "v2.2.10"
ENV FOLDER "swagger-ui-2.2.10"

2
thumbor-nginx-cors/Dockerfile

@ -1,4 +1,4 @@
FROM nginx:1.9
MAINTAINER Johannes Schickling "schickling.j@gmail.com"
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
COPY nginx.conf /etc/nginx/
Loading…
Cancel
Save