Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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 |
|