Skip to content

Commit 6109f8b

Browse files
authored
Merge pull request #3 from Zen0x7/mailio-added
Mailio, JSON, INJA added and README updated.
2 parents 11dc833 + 6cee6b0 commit 6109f8b

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

Dockerfile

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,23 @@ RUN apt update -qq \
6666
&& cmake --build build --parallel \
6767
&& cmake --install build \
6868
&& 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

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,11 @@
33
## About
44

55
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.

0 commit comments

Comments
 (0)