Newer
Older
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
FROM debian:latest
RUN apt-get update &&
apt-get install build-essential cmake libcurlpp-dev git ibjsoncpp-dev
g++ \
automake \
autoconf \
autoconf-archive \
libtool \
libboost-all-dev \
libevent-dev \
libdouble-conversion-dev \
libgoogle-glog-dev \
libgflags-dev \
liblz4-dev \
liblzma-dev \
libsnappy-dev \
make \
zlib1g-dev \
binutils-dev \
libjemalloc-dev \
libssl-dev \
pkg-config -y &&
mkdir /proxygenSrc && cd /proxygenSrc &&
git clone https://github.com/facebook/proxygen.git &&
cd proxygen &&
https://github.com/facebook/folly.git &&
cd folly &&
autoreconf -ivf &&
./configure &&
make march=native &&
make check &&
make install &&
cd .. &&
cd proxygen &&
./deps.sh &&
./reinstall.sh &&
mkdir /pushGateway &&
cd /pushGateway &&
git clone https://git.fairkom.net/chat/RocketChatMobilePushGateway.git &&
cd RocketChatMobilePushGateway &&
cmake . &&
make march=native&&
./rocketChatMobilePushGateway
EXPOSE 11000