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>
This commit is contained in:
cap-dev0x 2024-02-23 17:50:03 -08:00 committed by Àngel Ollé Blázquez
parent 57d5b313b9
commit c18430752a
2 changed files with 2 additions and 2 deletions

View File

@ -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 && \

View File

@ -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