-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add newline to test * fix: freetext translation * feature: add FHIR dependency and update others * feature: fix freetext translation, add HAPI FHIR validation and optimize build
- Loading branch information
1 parent
3903ade
commit c23c39c
Showing
11 changed files
with
115 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
** | ||
!pom.xml | ||
!Dockerfile | ||
!src/main/ | ||
!src/docker/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
FROM maven:3-eclipse-temurin-17 AS build | ||
FROM maven:3.9.9-eclipse-temurin-17 AS build | ||
|
||
WORKDIR /app | ||
COPY . ./ | ||
RUN mvn clean install -U | ||
COPY pom.xml ./ | ||
COPY src ./src | ||
RUN mvn clean install -U -DskipTests | ||
|
||
FROM bellsoft/liberica-openjre-alpine:17 | ||
COPY --from=build /app/target/obds2fhir*with-dependencies.jar /obds2fhir/obds2fhir.jar | ||
ADD src/docker/start.sh /obds2fhir/ | ||
COPY src/docker/start.sh /obds2fhir/ | ||
RUN chmod +x /obds2fhir/start.sh | ||
ENTRYPOINT ["obds2fhir/start.sh"] | ||
|
||
|
||
ENV FILE_PATH="/obds2fhir/clinical_data" | ||
ENV STORE_PATH="http://blaze:8090/fhir" | ||
ENV STORE_AUTH="" | ||
ENV IDENTIFIER_SYSTEM="http://dktk.dkfz.de/fhir/onco/core/CodeSystem/PseudonymArtCS" | ||
ENV LOG_LEVEL="INFO" | ||
ENV MAINZELLISTE_URL="http://host.docker.internal:8080" | ||
ENV MAINZELLISTE_APIKEY="" | ||
ENV IDTYPE="" | ||
ENV SALT="createLocalCustomSalt" | ||
ENV SSL_CERTIFICATE_VALIDATION="true" | ||
ENV ADD_DEPARTMENTS="false" | ||
ENV WAIT_FOR_CONNECTION="false" | ||
ENV KEEP_INTERNAL_ID="false" | ||
ENV FILE_PATH="/obds2fhir/clinical_data" \ | ||
STORE_PATH="http://blaze:8090/fhir" \ | ||
STORE_AUTH="" \ | ||
IDENTIFIER_SYSTEM="http://dktk.dkfz.de/fhir/onco/core/CodeSystem/PseudonymArtCS" \ | ||
LOG_LEVEL="INFO" \ | ||
MAINZELLISTE_URL="http://host.docker.internal:8080" \ | ||
MAINZELLISTE_APIKEY="" \ | ||
IDTYPE="" \ | ||
SALT="createLocalCustomSalt" \ | ||
SSL_CERTIFICATE_VALIDATION="true" \ | ||
ADD_DEPARTMENTS="false" \ | ||
WAIT_FOR_CONNECTION="false" \ | ||
KEEP_INTERNAL_ID="false" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.