forked from singnet/dnn-model-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
47 lines (35 loc) · 1.5 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
FROM nvidia/cuda:9.0-cudnn7-runtime
ARG git_owner="singnet"
ARG git_repo="dnn-model-services"
ARG git_branch="master"
ENV SINGNET_REPOS=/opt/singnet
ENV DNN_REPO_NAME=${git_repo}
ENV SERVICES_FOLDER=${SINGNET_REPOS}/${DNN_REPO_NAME}/services
ENV SERVICE_NAME=deepfakes-faceswap
RUN mkdir -p ${SINGNET_REPOS}
RUN apt-get update && \
apt-get install -y \
git \
wget \
nano \
curl
# OpenCV dependencies
RUN apt-get install -y libglib2.0-0 libsm6 libxext6 libxrender-dev
RUN apt-get install -y python3 python3-pip ffmpeg
RUN SNETD_VERSION=`curl -s https://api.github.com/repos/singnet/snet-daemon/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")'` && \
cd /tmp && \
wget https://github.com/singnet/snet-daemon/releases/download/${SNETD_VERSION}/snet-daemon-${SNETD_VERSION}-linux-amd64.tar.gz && \
tar -xvf snet-daemon-${SNETD_VERSION}-linux-amd64.tar.gz && \
mv snet-daemon-${SNETD_VERSION}-linux-amd64/snetd /usr/bin/snetd
RUN cd ${SINGNET_REPOS} && \
git clone -b ${git_branch} https://github.com/${git_owner}/${DNN_REPO_NAME}.git
# Getting the Deepfakes/faceswap codes
RUN cd ${SERVICES_FOLDER}/${SERVICE_NAME} && \
git clone https://github.com/deepfakes/faceswap.git
# Getting content-server module
RUN cd ${SERVICES_FOLDER}/${SERVICE_NAME} && \
pip3 install git+https://github.com/arturgontijo/content-server.git
RUN cd ${SERVICES_FOLDER}/${SERVICE_NAME} && \
pip3 install -r requirements.txt && \
sh buildproto.sh
WORKDIR ${SERVICES_FOLDER}/${SERVICE_NAME}