This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Docker file for Ubuntu with OpenJDK 18 and Tomcat 9. | |
| FROM ubuntu:latest | |
| LABEL maintainer="Karl Hill <[email protected]>" | |
| ENV TOMCAT_VERSION 9.0.70 | |
| ENV CATALINA_HOME /usr/local/tomcat | |
| ENV JAVA_HOME /usr/lib/jvm/java-18-openjdk-amd64 | |
| ENV PATH $CATALINA_HOME/bin:$PATH | |
| # Install JDK & wget packages. |