Files
notifications-api/scripts/aws_install_dependencies.sh
Imdad Ahad 177515de8f Use python wheels to speed up AS deployment:
* Create wheels from python dependencies on building codedeploy artifact
* Update script to install wheels and default to pypi if not found
2016-10-21 16:16:10 +01:00

9 lines
191 B
Bash
Executable File

#!/bin/bash
set -eo pipefail
echo "Install dependencies"
cd /home/notify-app/notifications-api;
pip3 install --find-links=wheelhouse -r /home/notify-app/notifications-api/requirements.txt