mirror of
https://github.com/casjaysdevdocker/tools
synced 2025-01-18 18:34:29 -05:00
8 lines
363 B
Bash
8 lines
363 B
Bash
|
curl -q -fsSL "https://bun.sh/install" | bash &&
|
||
|
ln -sf /usr/local/share/bun/bin/bun /usr/local/bin &&
|
||
|
mkdir -p "${DEFAULT_DATA_DIR}/htdocs/www" &&
|
||
|
git clone "https://github.com/casjay-templates/bunjs" "${DEFAULT_DATA_DIR}/htdocs/www/" &&
|
||
|
rm -Rf ${DEFAULT_DATA_DIR}/htdocs/www/.git &&
|
||
|
cd "${DEFAULT_DATA_DIR}/htdocs/www" &&
|
||
|
/usr/local/bin/bun install
|