mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 16:22:17 -05:00
* Create wheels from python dependencies on building codedeploy artifact * Update script to install wheels and default to pypi if not found
9 lines
191 B
Bash
Executable File
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
|