github.com/openshift/source-to-image@v1.4.1-0.20240516041539-bf52fc02204e/test/integration/images/sti-fake-assemble-root/Dockerfile (about) 1 # 2 # This is fake image used for testing STI. It tests running build with the root assemble user 3 # 4 FROM sti_test/sti-fake 5 6 LABEL io.openshift.s2i.assemble-user="0" 7 8 RUN mkdir -p /sti-fake && \ 9 adduser -u 431 -h /sti-fake -s /sbin/nologin -D fakeuser && \ 10 chown -R fakeuser /sti-fake 11 12 USER 431