From b03d8edcd9adcd2840068cf7f7c909423da1da88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Gill=C3=A9?= Date: Wed, 20 Nov 2019 03:06:17 +0100 Subject: [PATCH] docker: replace maintainer by label in Dockerfiles The maintainer instruction is deprecated, see: https://docs.docker.com/engine/reference/builder/#maintainer-deprecated Also unified the maintainer value. --- docker/btcd/Dockerfile | 2 +- docker/lnd/Dockerfile | 2 +- docker/ltcd/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/btcd/Dockerfile b/docker/btcd/Dockerfile index 94aac048..6f6ec39d 100644 --- a/docker/btcd/Dockerfile +++ b/docker/btcd/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.12-alpine as builder -MAINTAINER Olaoluwa Osuntokun +LABEL maintainer="Olaoluwa Osuntokun " # Install build dependencies such as git and glide. RUN apk add --no-cache git gcc musl-dev diff --git a/docker/lnd/Dockerfile b/docker/lnd/Dockerfile index 96255660..424e2c74 100644 --- a/docker/lnd/Dockerfile +++ b/docker/lnd/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.13-alpine as builder -MAINTAINER Olaoluwa Osuntokun +LABEL maintainer="Olaoluwa Osuntokun " # Force Go to use the cgo based DNS resolver. This is required to ensure DNS # queries required to connect to linked containers succeed. diff --git a/docker/ltcd/Dockerfile b/docker/ltcd/Dockerfile index 2746d042..8123f841 100644 --- a/docker/ltcd/Dockerfile +++ b/docker/ltcd/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.12-alpine as builder -MAINTAINER Olaoluwa Osuntokun +LABEL maintainer="Olaoluwa Osuntokun " # Grab and install the latest version of roasbeef's fork of ltcd and all # related dependencies.