Files
Stardream eace48732d
Build and Push Docker Images / build (push) Successful in 17s
Initial release
2026-06-02 12:02:02 +10:00

5 lines
175 B
Docker

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"]