mirror of
https://github.com/goreleaser/nfpm
synced 2024-11-19 07:34:48 +01:00
1238660a59
refs #17
11 lines
277 B
Docker
11 lines
277 B
Docker
FROM fedora
|
|
ARG package
|
|
COPY ${package} /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
|