chore: add Docker deployment setup

This commit is contained in:
GuavaPopper
2026-06-10 18:08:57 +07:00
parent 66cfbbd523
commit cdba16e9e5
11 changed files with 1953 additions and 200 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env sh
set -e
cd /var/www/html
if [ ! -d node_modules ] || [ ! -f node_modules/.package-lock.json ]; then
npm install
fi
exec "$@"