From 75d31e5179390f0613ad3e82c5a7aae1106adbef Mon Sep 17 00:00:00 2001 From: acevif Date: Tue, 29 Aug 2023 20:12:16 +0900 Subject: [PATCH] Replace deprecated instruction - `MAINTAINER` instruction is deprecated. https://docs.docker.com/engine/reference/builder/#maintainer-deprecated - Used `LABEL org.opencontainers.image.authors="..."` instead. - `org.opencontainers.image.authors` is one of OCI Pre-Defined Annotation Keys. https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 16efa38..56d8c61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM openjdk:19-jdk-alpine3.16 -MAINTAINER think@hotmail.de +LABEL org.opencontainers.image.authors="think@hotmail.de" ENV PLANTUML_VERSION=1.2023.1 ENV LANG en_US.UTF-8 RUN \