github.com/schwarzm/garden-linux@v0.0.0-20150507151835-33bca2147c47/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