diff --git a/Dockerfile b/Dockerfile index b8176b5..0fec74d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,2 +1,7 @@ -FROM tomcat +FROM tomcat:8.0.20-jre8 +RUN mkdir -p /usr/local/tomcat/webapps/ROOT + +ENV PROJECT_HOME /usr/local/tomcat/webapps/ROOT + +COPY index.html $PROJECT_HOME/ diff --git a/index.html b/index.html new file mode 100755 index 0000000..7689e17 --- /dev/null +++ b/index.html @@ -0,0 +1,6 @@ + + + + Hello World + +