-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathDockerfile
executable file
·49 lines (41 loc) · 1.59 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
48
49
FROM pytorch/pytorch:1.4-cuda10.1-cudnn7-runtime
ARG git_owner="singnet"
ARG git_repo="dnn-model-services"
ARG git_branch="master"
ARG snetd_version
ENV SINGNET_REPOS=/opt/singnet
ENV DNN_REPO_NAME=${git_repo}
ENV SERVICES_FOLDER=${SINGNET_REPOS}/${DNN_REPO_NAME}/services
ENV SERVICE_NAME=places365-scene-recognition
RUN mkdir -p ${SINGNET_REPOS}
# Updating and installing common and project dependencies
RUN apt-get update && \
apt-get install -y \
wget \
curl \
git \
libglib2.0-0 \
libsm6 \
libxrender1 \
libxext6 && \
pip install cython && \
pip install --upgrade pip
# Installing SNET Daemon
RUN SNETD_GIT_VERSION=`curl -s https://api.github.com/repos/singnet/snet-daemon/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")' || echo "v5.0.1"` && \
SNETD_VERSION=${snetd_version:-${SNETD_GIT_VERSION}} && \
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 && \
rm -rf snet-daemon-*
# Cloning service repository, downloading models
RUN cd ${SINGNET_REPOS} && \
git clone -b ${git_branch} https://github.com/${git_owner}/${DNN_REPO_NAME}.git && \
cd ${DNN_REPO_NAME}/utils && \
./get_places365_models.sh
# Building protobuf messages
RUN cd ${SERVICES_FOLDER}/${SERVICE_NAME} && \
pip install -U pip==20.2.4 && \
pip install -r requirements.txt && \
sh buildproto.sh
WORKDIR ${SERVICES_FOLDER}/${SERVICE_NAME}