Skip to content
Snippets Groups Projects
Dockerfile 310 B
Newer Older
  • Learn to ignore specific revisions
  • FROM tomcat:9-jdk17
    
    RUN rm -rf /usr/local/tomcat/webapps/*
    
    COPY BudgetMasterServer/build/2.13.0/BudgetMasterServer-v2.13.0.war $CATALINA_HOME/webapps/ROOT.war
    
    COPY BudgetMasterServer/src/main/resources/config/templates/settings-docker.properties /root/.Deadlocker/BudgetMaster/settings.properties
    
    Tobias Ullerich's avatar
    Tobias Ullerich committed
    
    EXPOSE 8080