My tomcat container doesn't extraact my war app

Hello , I have a problem with my tomcat container , its not extracting the war file
this is my dockerfile

FROM tomcat:8.0.33-jre8
MAINTAINER adel.benharath
COPY server.xml /usr/local/tomcat/conf
COPY ssl.key /usr/local/tomcat/conf
COPY ssl.crt /usr/local/tomcat/conf
ADD lily-bug.war /usr/local/tomcat/webapps/
WORKDIR /usr/local/tomcat
VOLUME /usr/app/lily_volume
EXPOSE 8080
CMD [“catalina.sh”, “run”]

after building my image from this dockerfile and running a container , I got a problem that the container did not extract the war file