From cfa814d51ab96eeb743fe42e5c3425eba26880be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Chlup?= Date: Wed, 30 Aug 2023 13:26:13 +0200 Subject: [PATCH] Fix .war copying in tomcat's Dockerfile --- test/tomcat/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/test/tomcat/Dockerfile b/test/tomcat/Dockerfile index be53d341d..ec436b6ca 100644 --- a/test/tomcat/Dockerfile +++ b/test/tomcat/Dockerfile @@ -8,6 +8,7 @@ RUN apt update && apt install -y iproute2 WORKDIR /usr/local/tomcat COPY target/*.jar ./lib/ +COPY *.war ./ COPY server.xml ./conf/ COPY context.xml ./conf/ COPY start.sh ./