Changes in [1712:f63a888473e3:1703:367ae3da4f20] in digilib (mirror)


Ignore:
Files:
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • README.md

    r1705 r1663  
    3131* [Source code](https://github.com/robcast/digilib)
    3232* [Issue tracker](https://github.com/robcast/digilib/issues)
    33 * [Docker images](https://hub.docker.com/r/robcast/digilib)
    3433* Daily built [WAR files](https://it-dev.mpiwg-berlin.mpg.de/downloads/digilib/daily-build/)
    3534* Daily built [Javadoc](https://it-dev.mpiwg-berlin.mpg.de/downloads/digilib/daily-build/javadoc/)
     
    6059   `mvn jetty:run-exploded --projects webapp`
    6160   
    62    and open http://localhost:8080/digilib/digilib.html in your browser.
     61   and watch digilib at http://localhost:8080/digilib/digilib.html
    6362
    6463or follow the build and install instructions on the [documentation pages](https://robcast.github.io/digilib/).
  • build/docker/Dockerfile

    r1705 r1703  
    33WORKDIR /usr/src/digilib
    44COPY . /usr/src/digilib/
    5 ARG MVN_ARGS
    6 # build digilib using maven
    7 RUN mvn $MVN_ARGS package
     5RUN mvn package
    86# remove the war file so we don't copy it in the next stage
    97RUN rm /usr/src/digilib/webapp/target/digilib-webapp-*.war
     
    119# runnable container stage
    1210FROM tomcat:9-jre11 AS runstage
    13 # copy entry script
    14 COPY build/docker/entrypoint.sh /entrypoint.sh
    15 # remove tomcat default webapps and set entrypoint
    16 RUN rm -r /usr/local/tomcat/webapps/* \
    17         && chmod 755 /entrypoint.sh
     11# remove tomcat default webapps
     12RUN rm -r /usr/local/tomcat/webapps/*
    1813# copy digilib from build image
    1914COPY --from=buildstage /usr/src/digilib/webapp/target/digilib-webapp-* /usr/local/tomcat/webapps/digilib/
    20 
    21 ENTRYPOINT ["/entrypoint.sh"]
Note: See TracChangeset for help on using the changeset viewer.