Initial release
Build and Push Docker Images / build (push) Successful in 17s

This commit is contained in:
Stardream
2026-06-02 10:58:24 +10:00
commit eace48732d
88 changed files with 11140 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
FROM node:20-alpine
WORKDIR /app
# npm install runs at startup; then vite build --watch rebuilds on source changes
CMD ["sh", "-c", "npm install && npm run build -- --watch"]