diff --git a/docs/deployment.md b/docs/deployment.md index 20fe3f4..853c1c1 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -44,7 +44,14 @@ cd cocoon ./scripts/cocoon-launch --build-dir --just-build ``` -**Manual build:** +**Manual build:** +Install Dependencies: +```bash +sudo apt install libjemalloc-dev liblz4-dev # Debian, Ubuntu +sudo dnf install jemalloc-devel lz4-devel # Fedora, CentOS +sudo pacman -S jemalloc lz4 # Arch Linux +``` +Build: ```bash mkdir build && cd build cmake -GNinja \ @@ -282,4 +289,4 @@ CID = instance number * 10 + base CID (6 for worker, 7 for proxy, 4 for client) - For TDX details: [TDX and Images](tdx-and-images.md) - For RA-TLS: [RA-TLS](ra-tls.md) -- For GPU setup: [GPU](gpu.md) \ No newline at end of file +- For GPU setup: [GPU](gpu.md)