Skip to content

Commit

Permalink
Add mkl and opencv-python
Browse files Browse the repository at this point in the history
  • Loading branch information
Bing Jian committed Oct 12, 2022
1 parent 66151a7 commit 8111487
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
8 changes: 8 additions & 0 deletions base/Dockerfile_ubuntu18.04_basic
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,11 @@ RUN conda install -y \
RUN /opt/conda/bin/python -m pip install --upgrade pip
RUN pip install networkx
RUN pip install termcolor

RUN pip install mkl==2021.1.1
RUN pip install opencv-python
RUN pip install opencv-contrib-python

# opencv requires libgl1
RUN apt-get update --fix-missing
RUN apt-get install -y libgl1-mesa-dev
7 changes: 7 additions & 0 deletions base/Dockerfile_ubuntu18.04_work
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,10 @@ RUN cd ${THIRDPARTY_REPOS} && \
-DCMAKE_BUILD_TYPE=Release && \
make -j$(nproc) && make install

RUN pip install mkl==2021.1.1
RUN pip install opencv-python
RUN pip install opencv-contrib-python

# opencv requires libgl1
RUN apt-get update --fix-missing
RUN apt-get install -y libgl1-mesa-dev

0 comments on commit 8111487

Please sign in to comment.