From 9120546c26b8f56f9f59f06f1d72cce0d0f26b68 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Thu, 9 Apr 2026 19:19:16 +0200 Subject: [PATCH] Install nginx as a dependency --- install/bentopdf-install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install/bentopdf-install.sh b/install/bentopdf-install.sh index 8cf8584eb..38b90e542 100644 --- a/install/bentopdf-install.sh +++ b/install/bentopdf-install.sh @@ -13,13 +13,17 @@ setting_up_container network_check update_os + +msg_info "Installing Dependencies" +$STD apt install nginx -y +msg_ok "Installed Dependencies" + NODE_VERSION="24" setup_nodejs fetch_and_deploy_gh_release "bentopdf" "alam00000/bentopdf" "tarball" "latest" "/opt/bentopdf" msg_info "Setup BentoPDF" cd /opt/bentopdf $STD npm ci --no-audit --no-fund -ensure_dependencies nginx cp ./.env.example ./.env.production export NODE_OPTIONS="--max-old-space-size=3072" export SIMPLE_MODE=true