fjenett commited on
Commit
f5bd0b4
1 Parent(s): 2cb78c2

Update Dockerfile

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