scratch-cloudvars-server/entrypoint.sh
2023-01-31 20:57:07 +01:00

9 lines
142 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
python3 app.py