From 55610b8425549863bc04ed80e0797bc8e1e5995f Mon Sep 17 00:00:00 2001 From: cglewis Date: Tue, 31 Oct 2017 18:21:12 -0700 Subject: [PATCH] MAINTAINER is deprecated, using LABEL now --- Dockerfile | 2 +- Dockerfile.alpine | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cdf47c5..149fb90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM nginx:1.13 -MAINTAINER Jason Wilder mail@jasonwilder.com +LABEL maintainer="Jason Wilder mail@jasonwilder.com" # Install wget and install/updates certificates RUN apt-get update \ diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 1d588d3..fce6aae 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,5 +1,5 @@ FROM nginx:1.13-alpine -MAINTAINER Jason Wilder mail@jasonwilder.com +LABEL maintainer="Jason Wilder mail@jasonwilder.com" # Install wget and install/updates certificates RUN apk add --no-cache --virtual .run-deps \