Answered step by step
Verified Expert Solution
Question
1 Approved Answer
WORKDIR and USER Most Dockerfile instructions affect the file system. However, the WORKDIR and USER change the behavior of subsequent Dockerfile instructions. Let's see if
WORKDIR and USER
Most Dockerfile instructions affect the file system. However, the WORKDIR and USER change the behavior of subsequent Dockerfile instructions. Let's see if you have a grasp on how these new instructions change the behavior of other instructions.
Answer the question
Possible Answers
Select all correct answers
After using 'WORKDIR' in our Dockerfile, no instructions after 'WORKDIR allows us to change the path in which the command of the CMD instruction is run.
After using 'USER' in our Dockerfile, no instructions after 'USER can use any other user than the one we set with 'USER', until the user is changed again.
'USER" allows us to change the user with which the command of the CMD instruction is run.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started