HoneyTian commited on
Commit
d4f6d43
·
1 Parent(s): dd6cbab
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -4,15 +4,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
 
4
 
5
  COPY . /data/GolandProjects/vad_go
6
 
 
 
 
7
  # RUN pip install onnxruntime
8
 
9
  RUN add-apt-repository ppa:onnx/onnxruntime
10
  RUN apt-get update
11
  RUN apt-get install -y python3-pip onnxruntime
12
 
13
+ RUN pip install --upgrade pip
14
+ RUN pip install --no-cache-dir --upgrade -r /data/GolandProjects/vad_go/requirements.txt
15
+
16
  RUN bash build_vad_go.sh
17
 
18
  WORKDIR /data/GolandProjects/vad_go