We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
OpenMCT stopped building sometime between June and July Need to pin OpenMCT to v2.2.5
Probably a good idea to clone and own OpenMCT and have the dockerfile pull from us. This way we can keep up with development.
Otherwise a quick hack in time for a demo:
from node:19 AS builder RUN git clone https://github.com/nasa/openmct.git WORKDIR ./openmct RUN git checkout tags/v2.2.5 WORKDIR openmct RUN npm update && npm install from nginx:latest COPY nginx.conf /etc/nginx/nginx.conf WORKDIR /app/dist COPY --from=builder /openmct/dist ./ COPY ./index.html ./ COPY ./bifrost.js ../ COPY ./bifrost-config.json ../ ENV NGINX_HOST=localhost ENV NGINX_PORT=8081 EXPOSE 8081:8081
The text was updated successfully, but these errors were encountered:
Pin openmct version to a tag
35d0b2f
OpenMCT won't build correctly with versions after 2.2.5 Will need to address later. Addresses #22
Pin openmct version to a tag (#23)
88e4190
No branches or pull requests
OpenMCT stopped building sometime between June and July
Need to pin OpenMCT to v2.2.5
Probably a good idea to clone and own OpenMCT and have the dockerfile pull from us.
This way we can keep up with development.
Otherwise a quick hack in time for a demo:
The text was updated successfully, but these errors were encountered: