From f47147ba440090ae30bba6aaa4c5809a5cafdb82 Mon Sep 17 00:00:00 2001 From: saidsurucu Date: Thu, 4 Dec 2025 13:20:37 +0300 Subject: [PATCH] Add postinstall.sh for Playwright Chromium installation --- postinstall.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 postinstall.sh diff --git a/postinstall.sh b/postinstall.sh new file mode 100755 index 0000000..90c9111 --- /dev/null +++ b/postinstall.sh @@ -0,0 +1,7 @@ +#!/bin/bash +# Post-install script for FastMCP Cloud +# Installs Chromium browser for Playwright + +echo "Installing Playwright Chromium browser..." +playwright install chromium +echo "Chromium installation complete."