DOP-C02 • Practice Test 21
Free DOP-C02 practice test — 15 questions with explanations. Set 21. No signup required.
Refer to the exhibit. A team uses this buildspec.yml in AWS CodeBuild. The build fails because the 'dist' directory does not exist after the build phase. What is the most likely cause?
buildspec.yml:
version: 0.2
phases:
install:
runtime-versions:
python: 3.8
commands:
- pip install -r requirements.txt
build:
commands:
- python setup.py build
artifacts:
files:
- '**/*'
base-directory: 'dist'