Skip to content

Commit

Permalink
JSON and INJA added.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zen0x7 committed Sep 22, 2024
1 parent ab88a48 commit 6cee6b0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
19 changes: 17 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,23 @@ RUN apt update -qq \
&& cmake --build build --parallel \
&& cmake --install build \
&& cd .. \
&& rm sentry -Rf \
&& rm sentry -rf \
&& git clone https://github.com/karastojko/mailio.git \
&& cd mailio \
&& cmake . \
&& make install \
&& cd .. \
&& rm mailio -rf \
&& git clone https://github.com/nlohmann/json.git \
&& cd json \
&& cmake . \
&& make \
&& make install
&& make install \
&& cd .. \
&& rm json -rf \
&& git clone https://github.com/pantor/inja.git \
&& cd inja \
&& cmake . -DBUILD_TESTING=OFF -DINJA_BUILD_TESTS=OFF -DBUILD_BENCHMARK=OFF -DCOVERALLS=OFF \
&& make install \
&& cd .. \
&& rm inja -rf
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Shipshape and lightweight debian based docker image prepared and ready to build

## Extras

- **Bcrypt** for encryption.
- **Sentry Native** for error logging.
- **Mailio** for mailing.
- [**Bcrypt**](https://github.com/trusch/libbcrypt) for encryption.
- [**Sentry**](https://github.com/getsentry/sentry-native) for error logging.
- [**Mailio**](https://github.com/karastojko/mailio) for mail sending.
- **JSON** for data structuring.
- **INJA** for templating.

0 comments on commit 6cee6b0

Please sign in to comment.