Skip to content

Commit

Permalink
Merge branch 'dev' into dependabot/npm_and_yarn/rollup-4.22.4
Browse files Browse the repository at this point in the history
  • Loading branch information
smalho01 committed Sep 30, 2024
2 parents 23f6652 + c6db46a commit 6c34585
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 21,827 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }]
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
'@typescript-eslint/no-explicit-any': 'warn'
}
};
3 changes: 3 additions & 0 deletions Dockerfile
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
5 changes: 4 additions & 1 deletion Dockerfile.dev
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
Loading

0 comments on commit 6c34585

Please sign in to comment.