fjenett commited on
Commit
0db8138
·
1 Parent(s): 3decb17

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -10,11 +10,11 @@ FROM hdgigante/python-opencv
10
 
11
  # RUN pip install opencv-python mediapipe
12
 
13
- RUN pip install Cython==0.29.36
14
 
15
  RUN git clone https://github.com/Li-Zhaoxi/AAMED.git && \
16
  cd AAMED/python && \
17
- python setup.py build_ext --inplace
18
 
19
- RUN cd /opt/build/AAMED/python && python test_aamed.py
20
 
 
10
 
11
  # RUN pip install opencv-python mediapipe
12
 
13
+ RUN pip3 install Cython==0.29.36
14
 
15
  RUN git clone https://github.com/Li-Zhaoxi/AAMED.git && \
16
  cd AAMED/python && \
17
+ python3 setup.py build_ext --inplace
18
 
19
+ RUN cd /opt/build/AAMED/python && python3 test_aamed.py
20