forked from IINemo/docker-syntaxnet_rus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
96 lines (69 loc) · 2.67 KB
/
Dockerfile
File metadata and controls
96 lines (69 loc) · 2.67 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
FROM ubuntu:15.10
RUN apt-get update && apt-get install -y \
build-essential \
curl \
g++ \
git \
libfreetype6-dev \
libpng12-dev \
libzmq3-dev \
openjdk-8-jdk \
pkg-config \
python-dev \
python-numpy \
python-pip \
software-properties-common \
swig \
unzip \
zip \
zlib1g-dev \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN update-ca-certificates -f
# Set up Bazel.
# Running bazel inside a `docker build` command causes trouble, cf:
# https://github.com/bazelbuild/bazel/issues/134
# The easiest solution is to set up a bazelrc file forcing --batch.
RUN echo "startup --batch" >>/root/.bazelrc
# Similarly, we need to workaround sandboxing issues:
# https://github.com/bazelbuild/bazel/issues/418
RUN echo "build --spawn_strategy=standalone --genrule_strategy=standalone" \
>>/root/.bazelrc
ENV BAZELRC /root/.bazelrc
# Install the most recent bazel release.
ENV BAZEL_VERSION 0.3.1
WORKDIR /
RUN mkdir /bazel && \
cd /bazel && \
curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \
curl -fSsL -o /bazel/LICENSE.txt https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE.txt && \
chmod +x bazel-*.sh && \
./bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \
cd / && \
rm -f /bazel/bazel-$BAZEL_VERSION-installer-linux-x86_64.sh
# Syntaxnet dependencies
RUN pip install -U protobuf==3.0.0b2
RUN pip install asciitree mock
# Download and build Syntaxnet
RUN git clone --recursive https://github.com/tensorflow/models.git /root/models
RUN cd /root/models/syntaxnet/tensorflow && echo | ./configure
RUN cd /root/models/syntaxnet && bazel test syntaxnet/... util/utf8/...
# Setting up locales
RUN \
echo u_RU.UTF-8 UTF-8 > /etc/locale.gen && \
locale-gen "ru_RU.UTF-8" && \
echo 'LANG="ru_RU.UTF-8"'>/etc/default/locale && \
dpkg-reconfigure --frontend=noninteractive locales && \
update-locale LC_ALL=ru_RU.UTF-8 LANG=ru_RU.UTF-8
ENV LANG ru_RU.UTF-8
# Downloading and unpacking model for Russian
ADD http://download.tensorflow.org/models/parsey_universal/Russian-SynTagRus.zip /root/models/syntaxnet/syntaxnet/models
RUN unzip /root/models/syntaxnet/syntaxnet/models/Russian-SynTagRus.zip -d /root/models/syntaxnet/syntaxnet/models/
# Misk
COPY demo_rus.sh /root/models/syntaxnet/syntaxnet/
# Standalone server
COPY api /root/models/syntaxnet/bazel-bin/syntaxnet/parser_eval.runfiles/__main__/syntaxnet/api/
####################
WORKDIR /root/models/syntaxnet/
CMD /root/models/syntaxnet/syntaxnet/demo_rus.sh