File size: 399 Bytes
165d1b6
382cf0c
 
 
 
 
 
165d1b6
382cf0c
 
 
 
695eaf0
d9494cc
 
382cf0c
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM golang:1.23

WORKDIR /data/GolandProjects/vad_go

COPY . /data/GolandProjects/vad_go

RUN apt-get update
RUN apt-get install -y python3-pip onnxruntime

RUN pip install --upgrade pip
RUN pip install --no-cache-dir --upgrade -r /data/GolandProjects/vad_go/requirements.txt

RUN bash build_vad_go.sh

WORKDIR /data/GolandProjects/vad_go

USER root

RUN chmod -R 777 .

CMD ["python3", "main.py"]