-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
53 lines (35 loc) · 882 Bytes
/
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
50
51
52
53
FROM alpine:latest
RUN apk update && \
# Project dependencies
apk add g++ \
cmake \
ninja \
gtest \
gtest-dev \
protobuf \
protobuf-dev \
# gRPC compilation dependencies
gcc \
make \
automake \
autoconf \
libtool \
openssl-dev \
libffi-dev \
git \
curl \
# Cpp-Coveralls dependencies
python3 \
python3-dev \
py2-pip
# Cpp Coveralls installation
RUN pip3 install pip --upgrade
RUN pip3 install PyOpenSSL --upgrade
RUN pip3 install cpp-coveralls
RUN mkdir -pv /vetulus
ADD . /vetulus/
WORKDIR /vetulus
RUN /vetulus/scripts/install_deps.sh
RUN /vetulus/scripts/compile.sh
EXPOSE 4242
CMD /vetulus/scripts/run_docker.sh