1
1
Fork 0
mirror of https://github.com/goreleaser/nfpm synced 2024-05-20 22:46:10 +02:00
nfpm/testdata/acceptance/xz.rpm.compression.dockerfile

11 lines
346 B
Plaintext
Raw Normal View History

FROM fedora
ARG package
COPY ${package} /tmp/foo.rpm
RUN test "xz" = "$(rpm -qp --qf '%{PAYLOADCOMPRESSOR}' /tmp/foo.rpm)"
RUN rpm -ivh /tmp/foo.rpm
RUN test -e /usr/local/bin/fake
RUN test -f /etc/foo/whatever.conf
RUN echo wat >> /etc/foo/whatever.conf
RUN rpm -e foo
RUN test -f /etc/foo/whatever.conf.rpmsave
RUN test ! -f /usr/local/bin/fake