Spaces:
Sleeping
Sleeping
update
Browse files- Dockerfile +6 -3
Dockerfile
CHANGED
@@ -4,12 +4,15 @@ WORKDIR /data/GolandProjects/vad_go
|
|
4 |
|
5 |
COPY . /data/GolandProjects/vad_go
|
6 |
|
7 |
-
RUN apt-get update
|
8 |
-
RUN apt-get install -y python3-pip onnxruntime
|
9 |
-
|
10 |
RUN pip install --upgrade pip
|
11 |
RUN pip install --no-cache-dir --upgrade -r /data/GolandProjects/vad_go/requirements.txt
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
RUN bash build_vad_go.sh
|
14 |
|
15 |
WORKDIR /data/GolandProjects/vad_go
|
|
|
4 |
|
5 |
COPY . /data/GolandProjects/vad_go
|
6 |
|
|
|
|
|
|
|
7 |
RUN pip install --upgrade pip
|
8 |
RUN pip install --no-cache-dir --upgrade -r /data/GolandProjects/vad_go/requirements.txt
|
9 |
|
10 |
+
# RUN pip install onnxruntime
|
11 |
+
|
12 |
+
RUN add-apt-repository ppa:onnx/onnxruntime
|
13 |
+
RUN apt-get update
|
14 |
+
RUN apt-get install -y python3-pip onnxruntime
|
15 |
+
|
16 |
RUN bash build_vad_go.sh
|
17 |
|
18 |
WORKDIR /data/GolandProjects/vad_go
|