1
1
Fork 0
mirror of https://github.com/goreleaser/nfpm synced 2024-05-21 07:06:16 +02:00
nfpm/testdata/acceptance/rpm.ppc64le.dockerfile

11 lines
285 B
Plaintext
Raw Normal View History

2019-03-20 01:34:06 +01:00
FROM ppc64le/centos
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