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