github.com/cloudfoundry-attic/garden-linux@v0.333.2-candidate/integration/test-images/preexisting_users/Dockerfile (about) 1 FROM busybox:latest 2 3 RUN adduser -D alice && \ 4 adduser -D bob 5 6 USER alice 7 RUN echo "hi from Alice" > /home/alice/alicesfile 8 9 USER bob 10 RUN echo "hi from Bob" > /home/bob/bobsfile 11 12 USER root 13 RUN echo "this is a pre-existing dotfile" > /.foo