File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
application-infrastructure Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,16 @@ phases:
1313
1414 - ls -l -a
1515
16- - python --version
17- - echo "NODE_ENV is $NODE_ENV"
16+ # Build Environment information for debugging purposes
17+ - python3 --version
18+ - node --version
19+ - aws --version
1820
1921 # Configure pip cache directory
2022 - mkdir -p /root/.cache/pip
2123 - pip config set global.cache-dir /root/.cache/pip
2224
23- # Upgrade AWS CLI to the latest version
24- - pip install --upgrade awscli
25-
26- # Install Python dependencies for Build Scripts if requirements.txt exists
25+ # Build Environment: Install Python dependencies for Build Scripts if build-scripts/requirements.txt exists
2726 - |
2827 if [ -f "build-scripts/requirements.txt" ]; then
2928 echo "Installing Python dependencies for build scripts"
@@ -35,7 +34,7 @@ phases:
3534 pre_build :
3635 commands :
3736
38- # Install Python dependencies for Application if requirements.txt exists
37+ # Application Environment: Install Python dependencies needed for application environment if requirements.txt exists
3938 - |
4039 if [ -f "application-infrastructure/src/requirements.txt" ]; then
4140 echo "Installing Python dependencies for build scripts"
You can’t perform that action at this time.
0 commit comments