FROM ubuntu ARG package COPY ${package} /tmp/foo.deb RUN dpkg -i /tmp/foo.deb RUN test -e /usr/local/bin/fake RUN test -f /etc/foo/whatever.conf RUN test ! -f /tmp/preinstall-proof RUN test -f /tmp/postinstall-proof RUN test ! -f /tmp/preremove-proof RUN test ! -f /tmp/postremove-proof RUN echo wat >> /etc/foo/whatever.conf RUN dpkg -r foo RUN test -f /etc/foo/whatever.conf RUN test ! -f /usr/local/bin/fake RUN test -f /tmp/preremove-proof RUN test ! -f /tmp/postremove-proof