-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from mcode/dev
Dev
- Loading branch information
Showing
6 changed files
with
2,245 additions
and
4,524 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
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,6 +1,9 @@ | ||
FROM node:21-alpine | ||
WORKDIR /home/node/app/rems-smart-on-fhir | ||
|
||
COPY --chown=node:node . . | ||
RUN npm install | ||
EXPOSE 4040 | ||
|
||
HEALTHCHECK --interval=30s --start-period=15s --timeout=10m --retries=10 CMD wget --no-verbose --tries=1 --spider http://localhost:4040 || exit 1 | ||
CMD npm run start |
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,7 +1,10 @@ | ||
FROM node:21-alpine | ||
WORKDIR /home/node/app/rems-smart-on-fhir | ||
|
||
COPY --chown=node:node . . | ||
RUN npm install | ||
EXPOSE 4040 | ||
EXPOSE 4041 | ||
CMD ./dockerRunnerDev.sh | ||
|
||
HEALTHCHECK --interval=30s --start-period=15s --timeout=10m --retries=10 CMD wget --no-verbose --tries=1 --spider http://localhost:4040 || exit 1 | ||
CMD ./dockerRunnerDev.sh |
Oops, something went wrong.