10 lines
309 B
Docker
10 lines
309 B
Docker
ARG JAVA_VERSION=11
|
|
FROM d4science/smartgears-distribution:4.0.0-SNAPSHOT-java$JAVA_VERSION-tomcat10.1.19
|
|
#FROM smartgears-distribution:4.0.0-SNAPSHOT-java$JAVA_VERSION-tomcat10.1.19
|
|
|
|
COPY ./docker/logback.xml /etc/
|
|
COPY ./docker/container.ini /etc/
|
|
COPY ./target/helloworld.war /tomcat/webapps/
|
|
|
|
EXPOSE 8080
|