diff --git a/backend/build.sh b/backend/build.sh new file mode 100644 index 0000000..baab923 --- /dev/null +++ b/backend/build.sh @@ -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