monolithic alpine container

This commit is contained in:
Adam Outler
2025-09-25 07:43:42 -04:00
parent 2e694a752d
commit 8ed21a8c07
24 changed files with 204 additions and 978 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/bash
echo "Starting backend..."
cd "${NETALERTX_APP}" || exit
export PYTHONPATH="${NETALERTX_SERVER}"
# Start the backend, teeing stdout and stderr to log files and the container's console
python3 -m server > >(tee /app/log/stdout.log) 2> >(tee /app/log/stderr.log >&2)