Files
IntegryManagementSystem/Dockerfile
GiuseppeS aedaad1de3
Some checks failed
IntegryManagementSystem_Multi/pipeline/head Something is wrong with the build of this commit
Integrato Docker
2025-03-11 12:37:33 +01:00

13 lines
546 B
Docker

FROM tomcat:9-jre8-alpine
ENV TZ="Europe/Rome"
ENV JAVA_OPTS="-DDISABLE_DROOLS_COMPILE=TRUE -Xms512M -Xmx1G -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005"
ENV USERDOMAIN="STUDIO-ML"
COPY docker/tomcat/conf/integry/ems.properties /usr/local/tomcat/conf/integry/
COPY docker/tomcat/conf/integry/ems_automated_operations.json /usr/local/tomcat/conf/integry/
COPY docker/tomcat/conf/integry/ems_settings.json /usr/local/tomcat/conf/integry/
COPY ems-engine/target/ems-api.war /usr/local/tomcat/webapps/
EXPOSE 8080
EXPOSE 5005