From 073fa28b03650155c96e57a6c4098af955d8e8f1 Mon Sep 17 00:00:00 2001 From: Narendra Bhupathiraju <33356223+narendra311777@users.noreply.github.com> Date: Sun, 26 Jun 2022 20:48:45 +0530 Subject: [PATCH] Create Dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..75e4210 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM tomcat:8 +# Take the war and copy to webapps of tomcat +ADD ./ /usr/local/tomcat/webapps +EXPOSE 8080 +CMD "catalina.sh" "run"