fjenett commited on
Commit
0ea447e
1 Parent(s): e4dc301

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -1,10 +1,15 @@
1
  FROM jjanzic/docker-python3-opencv
2
 
 
 
3
  RUN pip install Cython==0.29.36
4
 
5
  RUN git clone https://github.com/Li-Zhaoxi/AAMED.git && \
6
  cd AAMED/python && \
7
  python setup.py build_ext --inplace
8
 
 
 
 
9
  RUN cd /opt/build/AAMED/python && python test_aamed.py
10
 
 
1
  FROM jjanzic/docker-python3-opencv
2
 
3
+ # RUN apt-get update && apt-get install -y opencv-python
4
+
5
  RUN pip install Cython==0.29.36
6
 
7
  RUN git clone https://github.com/Li-Zhaoxi/AAMED.git && \
8
  cd AAMED/python && \
9
  python setup.py build_ext --inplace
10
 
11
+
12
+ RUN updatedb && locate libopencv_core.so.2.4
13
+
14
  RUN cd /opt/build/AAMED/python && python test_aamed.py
15