Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +8 -3
Dockerfile
CHANGED
@@ -1,8 +1,13 @@
|
|
1 |
-
FROM
|
2 |
|
3 |
-
|
4 |
|
5 |
-
RUN
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
RUN git clone https://github.com/Li-Zhaoxi/AAMED.git && \
|
8 |
cd AAMED/python && \
|
|
|
1 |
+
FROM python:3.9
|
2 |
|
3 |
+
RUN apt-get update && apt -y install curl gnupg libgl1-mesa-glx libglib2.0-0 && rm -rf /var/lib/apt/lists/*
|
4 |
|
5 |
+
# RUN echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" | tee /etc/apt/sources.list.d/coral-edgetpu.list
|
6 |
+
# RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - && apt-get update && apt-get install -y python3-tflite-runtime && rm -rf /var/lib/apt/lists/*
|
7 |
+
|
8 |
+
RUN apt-get update && apt-get install -y opencv-python mediapipe
|
9 |
+
|
10 |
+
RUN pip install Cython==3.0.0 # 0.29.36
|
11 |
|
12 |
RUN git clone https://github.com/Li-Zhaoxi/AAMED.git && \
|
13 |
cd AAMED/python && \
|