-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BS-123 #81
Closed
Closed
BS-123 #81
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8e332d4
Removed extensions related code
daviemukungi e61acb1
BS-123-1 | Vijay | classpath
vijayanandtwks 0459a0e
BS-123-1 | Vijay | classpath
vijayanandtwks 60119d1
Update Dockerfile
sivareddyp 1b51963
Update start.sh
sivareddyp 3f5fb54
Update build_publish.yml
sivareddyp 65c2958
pulled repo online and build warfile
daviemukungi a74f69e
clone git icd10 extensions repo and build the jar file
daviemukungi 8993928
BS-123 | daviemukungi,vijay | add extensions outside repository
daviemukungi 163c15e
BS-123 | daviemukungi | Added workflows to clone ICD10 extensions rep…
daviemukungi d32e7d8
Removed extension repo workflows in the dockerfile
daviemukungi bce2abd
updated a temporary branch to test bahmni extensions workflows
daviemukungi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,33 @@ | ||
FROM amazoncorretto:8 | ||
|
||
ENV SERVER_PORT=8051 | ||
ENV BASE_DIR=/var/run/bahmni-reports | ||
ENV CONTEXT_PATH=/bahmnireports | ||
ENV WAR_DIRECTORY=/var/run/bahmni-reports/bahmni-reports | ||
ENV SERVER_OPTS="-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m" | ||
ENV DEBUG_OPTS="-agentlib:jdwp=transport=dt_socket,address=8003,server=y,suspend=n" | ||
|
||
RUN mkdir -p /var/log/bahmni-reports | ||
RUN mkdir -p /home/bahmni/reports | ||
RUN mkdir -p ${WAR_DIRECTORY} | ||
RUN mkdir -p ${HOME}/.bahmni-reports/ | ||
RUN mkdir -p /var/log/bahmni-reports/ | ||
RUN yum install -y gettext unzip | ||
|
||
ADD https://raw.githubusercontent.com/eficode/wait-for/v2.2.3/wait-for /etc/wait-for | ||
RUN yum install -y nc | ||
RUN chmod +x /etc/wait-for | ||
|
||
COPY target/bahmnireports.war /etc/bahmni-reports/bahmnireports.war | ||
RUN cd ${WAR_DIRECTORY} && jar xvf /etc/bahmni-reports/bahmnireports.war | ||
|
||
ADD https://repo.mybahmni.org/packages/build/bahmni-embedded-tomcat-8.0.42.jar /opt/bahmni-reports/lib/bahmni-embedded-tomcat.jar | ||
ADD https://github.com/daviemukungi/bahmni-Icd10extensions/raw/main/jarfile/extensions-1.0-SNAPSHOT.jar /opt/bahmni-reports/lib/extensions-1.0-SNAPSHOT.jar | ||
|
||
COPY package/resources/log4j2.properties ${WAR_DIRECTORY}/WEB-INF/classes/ | ||
COPY package/resources/run-liquibase.sh /etc/bahmni-reports/ | ||
COPY package/docker/bahmni-reports/template/bahmni-reports.properties.template /etc/bahmni-reports/ | ||
|
||
COPY package/docker/bahmni-reports/start.sh start.sh | ||
RUN chmod +x start.sh | ||
CMD [ "./start.sh" ] |
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
91 changes: 0 additions & 91 deletions
91
src/main/java/org/bahmni/reports/extensions/icd10/Icd10Evaluator.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
src/main/java/org/bahmni/reports/extensions/icd10/Icd10LookupService.java
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
src/main/java/org/bahmni/reports/extensions/icd10/Icd10ResultSetExtension.java
This file was deleted.
Oops, something went wrong.
91 changes: 0 additions & 91 deletions
91
src/main/java/org/bahmni/reports/extensions/icd10/Impl/Icd10LookupServiceImpl.java
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
src/main/java/org/bahmni/reports/extensions/icd10/bean/IcdMap.java
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
src/main/java/org/bahmni/reports/extensions/icd10/bean/IcdResponse.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where are you using newly created file ?