Merge pull request 'Add build script to slim down docker images' (#3) from adjust-container-build into master

Reviewed-on: #3
This commit was merged in pull request #3.
This commit is contained in:
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