Complete the Dockerfile line to copy a file named app.py to the container's /app directory.
COPY [1] /app/The COPY instruction copies files from the build context. Use the exact filename app.py without slashes.
Complete the Dockerfile line to copy the entire config folder into the container's /etc/config directory.
COPY [1] /etc/config/To copy a folder, specify the folder name without trailing slash. Docker treats config as the folder to copy.
Fix the error in this Dockerfile line that tries to copy requirements.txt to /app but fails.
COPY [1] /app/The source must be the exact filename without slashes. Leading or trailing slashes cause errors.
Fill both blanks to copy index.html and style.css into the container's /usr/share/nginx/html directory.
COPY [1] [2] /usr/share/nginx/html/
Use the exact filenames to copy both files correctly.
Fill all three blanks to copy app.py, requirements.txt, and Dockerfile into the container's /app directory.
COPY [1] [2] [3] /app/
Use the exact filenames with correct capitalization to copy all files.