Exam 350-901 All QuestionsBrowse all questions from this exam
Question 263

Refer to the exhibit. Which action resolves the error for the GitLab CI/CD pipeline execution?

    Correct Answer: C

    The error message indicates that the 'python3' command is not found, which means Python 3 is not installed in the current Docker image being used (alpine:3.10). To resolve this issue, using a Docker image that already includes Python 3, such as python:3.9.0a4-alpine3.10, will ensure that Python 3 is available and the command will be recognized during the pipeline execution.

Discussion
fb48Option: C

Answer C Python3 command is not recognised. Looks like Python3 not installed. You must install python. But because there is no answer to install, you need tu use a base image that has python installed.

[Removed]Option: C

Pretty sure it's C.

andanteOption: D

alpine:3.10 has python-3.7.3 installed: https://alpinelinux.org/posts/Alpine-3.10.0-released.html Must be D

fb48Option: D

python3 command is not recognised by bash. Therefo the path must be added Answer: D

syauichi

python3 is not installed on Docker Image alpine3.10. Therefore, Answer is C.