1
0
Fork 0

init: whatever

This commit is contained in:
Arthur K. 2026-02-20 19:11:32 +03:00
commit e752a9003a
Signed by: wzray
GPG key ID: B97F30FDC4636357
9 changed files with 1053 additions and 0 deletions

15
src/entrypoint.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/sh
set -e
export DISPLAY=:99
Xvfb :99 -screen 0 1280x1024x24 -nolisten tcp -ac >/tmp/xvfb.log 2>&1 &
XVFB_PID=$!
cleanup() {
kill "$XVFB_PID" >/dev/null 2>&1 || true
}
trap cleanup EXIT INT TERM
exec python -u proxy.py