Add build script to slim down docker images #3

Merged
ozzy merged 1 commits from adjust-container-build into master 2026-08-29 16:46:16 +00:00
2 changed files with 12 additions and 0 deletions
Binary file not shown.
Executable
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
if command -v yarn >/dev/null 2>&1; then
echo "yarn is available"
else
echo "yarn is not installed" >&2
exit 1
fi
yarn install
yarn build