Question: 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
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
