fjenett commited on
Commit
e4dc301
·
1 Parent(s): 91efb99

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -1,12 +1,10 @@
1
  FROM jjanzic/docker-python3-opencv
2
 
3
- RUN pwd
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
- RUN cd /AAMED/python && python test_aamed.py
12
 
 
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