Skip to content

Commit

Permalink
Add debug info to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kostrykin committed Dec 13, 2023
1 parent e789036 commit 7d97369
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ RUN pip install --no-cache-dir pybind11
RUN pip install --no-cache-dir jupyterlab

COPY ../CarnaPy*.whl /tmp/carnapy/
RUN python -m pip install --force-reinstall /tmp/carnapy/CarnaPy*.whl
RUN ls -al /tmp/carnapy
RUN python -m pip install --force-reinstall $(find /tmp/carnapy -name '*.whl')
RUN rm -rf /tmp/carnapy

EXPOSE 8890
Expand Down

0 comments on commit 7d97369

Please sign in to comment.