diff --git a/Dockerfile b/Dockerfile index 6ae7213..a6699d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,12 @@ FROM maven:3.6.3-jdk-11-slim as build-hapi WORKDIR /tmp/hapi-fhir-jpaserver-starter COPY pom.xml . -RUN mvn dependency:go-offline +RUN mvn -ntp dependency:go-offline COPY src/ /tmp/hapi-fhir-jpaserver-starter/src/ RUN mvn clean install -DskipTests -FROM tomcat:9.0.37-jdk11-openjdk-slim-buster +FROM tomcat:9.0.38-jdk11-openjdk-slim-buster RUN mkdir -p /data/hapi/lucenefiles && chmod 775 /data/hapi/lucenefiles COPY --from=build-hapi /tmp/hapi-fhir-jpaserver-starter/target/*.war /usr/local/tomcat/webapps/ diff --git a/README.md b/README.md index 8a39fba..b9b2aca 100644 --- a/README.md +++ b/README.md @@ -135,14 +135,14 @@ Server will then be accessible at http://localhost:8080/ and eg. http://localhos ```bash ./build-docker-image.sh && docker run -p 8080:8080 -e "spring.batch.job.enabled=false" hapi-fhir/hapi-fhir-jpaserver-starter:latest ``` -Server will then be accessible at http://localhost:8080/hapi-fhir-jpaserver and eg. http://localhost:8080/hapi-fhir-jpaserver/fhir/metadata. Remember to adjust you overlay configuration in the application.yaml to eg. +Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust you overlay configuration in the application.yaml to eg. ```yaml tester: - id: home name: Local Tester - server_address: 'http://localhost:8080/hapi-fhir-jpaserver/fhir' + server_address: 'http://localhost:8080/fhir' refuse_to_fetch_third_party_urls: false fhir_version: R4 ``` diff --git a/pom.xml b/pom.xml index 0e66d1c..e17c0cc 100644 --- a/pom.xml +++ b/pom.xml @@ -21,11 +21,11 @@ 8 - 2.3.3.RELEASE + 2.3.4.RELEASE - 3.6.0 + 3.6.3 war @@ -269,7 +269,7 @@ org.springframework.boot spring-boot-autoconfigure - ${spring.boot} + ${spring_boot_version} @@ -289,7 +289,7 @@ org.springframework.boot spring-boot-starter-test - ${spring.boot} + ${spring_boot_version} test @@ -298,8 +298,8 @@ - - hapi-fhir-jpaserver + + ROOT @@ -495,7 +495,7 @@ org.springframework.boot spring-boot-starter-web - 2.3.3.RELEASE + ${spring_boot_version} @@ -508,7 +508,7 @@ org.springframework.boot spring-boot-starter-web - 2.3.3.RELEASE + ${spring_boot_version} org.springframework.boot diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index 7a91683..96bb062 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -86,7 +86,7 @@ hapi: - id: home name: Local Tester - server_address: 'http://localhost:8080/hapi-fhir-jpaserver/fhir' + server_address: 'http://localhost:8080/fhir' refuse_to_fetch_third_party_urls: false fhir_version: R4 -