Skip to content
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

Error running nodeonfhir config #182

Open
seanmcilvenna opened this issue Feb 25, 2023 · 2 comments
Open

Error running nodeonfhir config #182

seanmcilvenna opened this issue Feb 25, 2023 · 2 comments

Comments

@seanmcilvenna
Copy link

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
Run with meteor --settings config/settings.nodeonfhir.json
Receive the following errors:

[[[[[ /usr/src/app ]]]]]

=> Started proxy.
=> Meteor 2.10.0 is available. Update this project with 'meteor update'.
=> Errors prevented startup:

   While selecting package versions:
   error: unknown package in top-level dependencies:
   mitre:space-health-registry
   unknown package in top-level dependencies: mitre:consent-engine

=> Your application has errors. Waiting for file change.

Additional context
Running in Docker using the following Dockerfile:

FROM node:14.20

ARG config="configs/settings.nodeonfhir.json"
ARG user=meteor
ARG group=meteor
ARG uid=1001
ARG gid=1001

ENV ROOT_URL="http://localhost:3000"
ENV NODE_ENV="test"

RUN curl "https://install.meteor.com/" | sh

COPY . /usr/src/app
WORKDIR /usr/src/app

RUN groupadd -g ${gid} ${group}
RUN useradd -u ${uid} -g ${group} -s /bin/sh -m ${user}
RUN chown -Rh ${uid} /usr/src/app
RUN chmod -R 700 /usr/src/app

USER ${uid}:${gid}

RUN meteor npm install

EXPOSE 3000
CMD ["meteor", "--settings", "${config}"]
@technicalbirdVayuz
Copy link

Hi @seanmcilvenna,

Any luck with this?

@seanmcilvenna
Copy link
Author

No, but I haven't had to work with node-on-fhir lately. So, admittedly, haven't tried again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants