You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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}"]
The text was updated successfully, but these errors were encountered:
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:
Additional context
Running in Docker using the following
Dockerfile
:The text was updated successfully, but these errors were encountered: