add build script for render backend deployment

This commit is contained in:
Abi Raja 2023-11-16 19:03:05 -05:00
parent 6491e60f58
commit 3adec32ef1

11
backend/build.sh Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
# exit on error
set -o errexit
echo "Installing the latest version of poetry..."
pip install --upgrade pip
pip install poetry==1.4.1
rm poetry.lock
poetry lock
python -m poetry install