Update Dockerfile to point to correct WAR path and update gitignore to ignore IntelliJ IDEA resources

This commit is contained in:
jpoth
2018-11-21 10:30:45 +01:00
parent 76f9a2f0f3
commit 20c0e2c567
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,5 +1,6 @@
target/ target/
.idea/ .idea/
*.iml
# Compiled class file # Compiled class file
*.class *.class

View File

@@ -1,4 +1,4 @@
FROM jetty:9-jre8-alpine FROM jetty:9-jre8-alpine
USER jetty:jetty USER jetty:jetty
ADD ./target/hapi-fhir-jpaserver-starter.war /var/lib/jetty/webapps/root.war ADD ./target/hapi-fhir-jpaserver.war /var/lib/jetty/webapps/root.war
EXPOSE 8080 EXPOSE 8080