gopkg.in/openshift/source-to-image.v1@v1.2.0/test/integration/images/sti-fake-numericuser/Dockerfile (about) 1 # 2 # This is fake image used for testing STI. It tests running build as a numeric user 3 # 4 FROM sti_test/sti-fake 5 6 RUN mkdir -p /sti-fake && \ 7 adduser -u 431 -h /sti-fake -s /sbin/nologin -D fakeuser && \ 8 chown -R fakeuser /sti-fake 9 10 USER 431