Author SHA1 Message Date
ozzy a397eea1ab Add build script to slim down docker images 2026-08-29 17:45:34 +01: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