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

11 lines
274 B
Plaintext
Raw Normal View History

2018-03-23 17:56:57 +01:00
FROM i386/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 echo wat >> /etc/foo/whatever.conf
RUN dpkg -r foo
RUN test -f /etc/foo/whatever.conf
RUN test ! -f /usr/local/bin/fake