File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -66,4 +66,23 @@ RUN apt update -qq \
66
66
&& cmake --build build --parallel \
67
67
&& cmake --install build \
68
68
&& cd .. \
69
- && rm sentry -Rf
69
+ && rm sentry -rf \
70
+ && git clone https://github.com/karastojko/mailio.git \
71
+ && cd mailio \
72
+ && cmake . \
73
+ && make install \
74
+ && cd .. \
75
+ && rm mailio -rf \
76
+ && git clone https://github.com/nlohmann/json.git \
77
+ && cd json \
78
+ && cmake . \
79
+ && make \
80
+ && make install \
81
+ && cd .. \
82
+ && rm json -rf \
83
+ && git clone https://github.com/pantor/inja.git \
84
+ && cd inja \
85
+ && cmake . -DBUILD_TESTING=OFF -DINJA_BUILD_TESTS=OFF -DBUILD_BENCHMARK=OFF -DCOVERALLS=OFF \
86
+ && make install \
87
+ && cd .. \
88
+ && rm inja -rf
Original file line number Diff line number Diff line change 3
3
## About
4
4
5
5
Shipshape and lightweight debian based docker image prepared and ready to build C++ and Boost Asio and Beast applications.
6
+
7
+ ## Extras
8
+
9
+ - [ ** Bcrypt** ] ( https://github.com/trusch/libbcrypt ) for encryption.
10
+ - [ ** Sentry** ] ( https://github.com/getsentry/sentry-native ) for error logging.
11
+ - [ ** Mailio** ] ( https://github.com/karastojko/mailio ) for mail sending.
12
+ - ** JSON** for data structuring.
13
+ - ** INJA** for templating.
You can’t perform that action at this time.
0 commit comments