github.com/mgoltzsche/ctnr@v0.7.1-alpha/image/builder/dockerfile/testfiles/10-add.test (about)

     1  FROM alpine:3.7
     2  ADD entrypoint.sh /entrypoint.sh
     3  ADD --chown=root:root entrypoint.sh *.conf /
     4  ADD http://example.org/index.html /var/www/html/
     5  
     6  # ASSERT RUN [ -f "/entrypoint.sh" ] && [ -f "/cfg-a.conf" ] && [ -f "/var/www/html/index.html" ]
     7  
     8  # TODO: test different users (need to run test as root or use proot)