Add build script to slim down docker images

This commit is contained in:
2026-08-29 17:45:34 +01:00
parent d52d71ef6c
commit a397eea1ab
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