scratch-cloudvars-server/entrypoint.sh
2023-01-31 21:41:31 +01:00

10 lines
148 B
Bash
Executable File

#!/bin/sh
BASE=$(dirname $0)
cd $BASE
git pull
python3 -m venv env
source env/bin/activate
pip3 install -U -r requirements.txt
exec python3 app.py