This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git

commit e92780a01d0b6737882b0e051e63309cc646a438
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Sat Jun 21 13:55:37 2025 +0300

    Update the wicket-examples Dockerfile
    
    * rename wicket-examples.war to ROOT.war when ADDing
    * use LABEL instead of the deprecated MAINTAINER
    
    Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
---
 wicket-examples/Dockerfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/wicket-examples/Dockerfile b/wicket-examples/Dockerfile
index 7efb1478e6..854fdc1f27 100644
--- a/wicket-examples/Dockerfile
+++ b/wicket-examples/Dockerfile
@@ -1,6 +1,7 @@
 FROM tomcat:10.1-jre17
-MAINTAINER Apache Wicket Team <[email protected]>
+
+LABEL authors="Apache Wicket Team <[email protected]>"
 
 RUN rm -rf /usr/local/tomcat/webapps/*
 
-ADD target/ROOT.war /usr/local/tomcat/webapps/
+ADD target/wicket-examples.war /usr/local/tomcat/webapps/ROOT.war

Reply via email to