Skip to content

Commit

Permalink
Merge pull request #3 from DARPA-ASKEM/mira-install
Browse files Browse the repository at this point in the history
Updates container to install Mira from source
  • Loading branch information
mattprintz authored Jul 13, 2023
2 parents 4207693 + ab9bcfd commit 1bdd290
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ RUN pip install poetry
RUN poetry config virtualenvs.create false
RUN poetry install --no-dev

# Install Mira from `hackathon` branch
RUN git clone https://github.com/indralab/mira.git /mira
WORKDIR /mira
RUN git checkout hackathon
RUN python -m pip install -e .
RUN apt-get update && \
apt-get install -y graphviz libgraphviz-dev
RUN python -m pip install -e ."[ode,tests,dkg-client,sbml]"
WORKDIR /jupyter

# Kernel hast to go in a specific spot
COPY llmkernel /usr/local/share/jupyter/kernels/llmkernel

Expand Down

0 comments on commit 1bdd290

Please sign in to comment.