scratch-cloudvars-server/entrypoint.sh
2023-01-31 20:35:27 +01:00

9 lines
139 B
Bash
Executable File

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