docker builder

This commit is contained in:
acidburnmonkey
2025-08-06 02:37:54 -04:00
parent d5e0fc56c3
commit 06a304579c
3 changed files with 69 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
# Start uvicorn in background
uv run uvicorn mysite.asgi:application --host 127.0.0.1 --port 8000 &
# Start nginx in foreground
nginx -g "daemon off;"