1
1
mirror of https://github.com/goreleaser/nfpm synced 2025-04-05 13:49:07 +02:00
nfpm/testdata/acceptance/rpm_centos10.dockerfile
Carlos Alexandro Becker f9d9d19266
test: test centos10, fedora 40+ (#899)
* test: test centos10, fedora 40+

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>

* chore: typos

* fix: typo

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2025-01-11 15:45:12 -03:00

21 lines
647 B
Docker

FROM quay.io/centos/centos:stream10 AS test_base
RUN yum install -y createrepo yum-utils
ARG package
RUN echo "${package}"
COPY ${package} /tmp/foo.rpm
FROM test_base AS signed
COPY keys/pubkey.asc /tmp/pubkey.asc
RUN rpm --import /tmp/pubkey.asc
RUN rpm -q gpg-pubkey --qf '%{NAME}-%{VERSION}-%{RELEASE}\t%{SUMMARY}\n'
RUN rpm -vK /tmp/foo.rpm
RUN rpm -vK /tmp/foo.rpm | grep "RSA/SHA256 Signature, key ID 15bd80b3: OK"
RUN rpm -K /tmp/foo.rpm
RUN rpm -K /tmp/foo.rpm | grep -E "(?:pgp|digests signatures) OK"
RUN rm -rf /etc/yum.repos.d/*.repo
COPY keys/test.rpm.repo /etc/yum.repos.d/test.rpm.repo
RUN createrepo /tmp
RUN yum install -y foo