github.com/nak3/source-to-image@v1.1.10-0.20180319140719-2ed55639898d/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