-
Notifications
You must be signed in to change notification settings - Fork 424
DL3002
José Lorenzo Rodríguez edited this page Jun 18, 2018
·
3 revisions
FROM busybox
USER root
RUN ...
FROM busybox
USER root
RUN ...
USER guest
Switching to the root USER
opens up certain security risks if an attacker gets access to the container. In order to mitigate this, switch back to a non privileged user after running the commands you need as root.