File size: 520 Bytes
c88be80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM openvino/ubuntu20_runtime:2022.3.0
USER root

RUN apt-get update -y
RUN apt-get install -y libcurl4-openssl-dev libssl-dev libgomp1 libpugixml-dev

RUN mkdir -p /root/kby-ai-face
WORKDIR /root/kby-ai-face
COPY ./libfacesdk2.so .
COPY ./libimutils.so /usr/lib/libimutils.so
COPY ./facesdk.py .
COPY ./facebox.py .
COPY ./app.py .
COPY ./demo.py .
COPY ./run.sh .
COPY ./face_examples ./face_examples
COPY ./requirements.txt .
COPY ./data ./data
RUN pip3 install -r requirements.txt
CMD ["./run.sh"]
EXPOSE 8080 9000