From c18430752a7cc6f3bce6213aca2306d32e3dc1a9 Mon Sep 17 00:00:00 2001 From: cap-dev0x <158111888+cap-dev0x@users.noreply.github.com> Date: Fri, 23 Feb 2024 17:50:03 -0800 Subject: [PATCH] build(Dockerfile): replace deprecated MAINTAINER tag with label of the same Current syntax now used to denote the "WebGoat team" as maintainer Link: https://docs.docker.com/reference/dockerfile/#label Signed-off-by: cap-dev0x <158111888+cap-dev0x@users.noreply.github.com> --- Dockerfile | 2 +- Dockerfile_desktop | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51bbcb1c1..1fabdd534 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM docker.io/eclipse-temurin:21.0.1_12-jre LABEL NAME = "WebGoat: A deliberately insecure Web Application" -MAINTAINER "WebGoat team" +LABEL maintainer = "WebGoat team" RUN \ useradd -ms /bin/bash webgoat && \ diff --git a/Dockerfile_desktop b/Dockerfile_desktop index e6dbd15cb..6ce673024 100644 --- a/Dockerfile_desktop +++ b/Dockerfile_desktop @@ -1,6 +1,6 @@ FROM lscr.io/linuxserver/webtop:ubuntu-xfce LABEL NAME = "WebGoat: A deliberately insecure Web Application" -MAINTAINER "WebGoat team" +LABEL maintainer = "WebGoat team" WORKDIR /config