Skip to content

Commit 61d4394

Browse files
authored
Merge pull request #1105 from thaJeztah/remove_rpmlint
[master] rpm: remove rpmlint from Dockerfiles as it's not used
2 parents 6547a6f + 38309c1 commit 61d4394

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

rpm/centos-9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ENV SUITE=${SUITE}
2525
# https://forums.centos.org/viewtopic.php?f=54&t=72574, and
2626
# https://access.redhat.com/solutions/3720351
2727
RUN rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial
28-
RUN dnf install -y rpm-build rpmlint dnf-plugins-core
28+
RUN dnf install -y rpm-build dnf-plugins-core
2929
RUN dnf config-manager --set-enabled crb
3030

3131
COPY --link SPECS /root/rpmbuild/SPECS

rpm/fedora-39/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG DISTRO
1818
ARG SUITE
1919
ENV DISTRO=${DISTRO}
2020
ENV SUITE=${SUITE}
21-
RUN dnf install -y rpm-build rpmlint dnf-plugins-core
21+
RUN dnf install -y rpm-build dnf-plugins-core
2222
COPY --link SPECS /root/rpmbuild/SPECS
2323
RUN dnf builddep -y /root/rpmbuild/SPECS/*.spec
2424
COPY --link --from=golang /usr/local/go /usr/local/go

rpm/fedora-40/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG DISTRO
1818
ARG SUITE
1919
ENV DISTRO=${DISTRO}
2020
ENV SUITE=${SUITE}
21-
RUN dnf install -y rpm-build rpmlint dnf-plugins-core
21+
RUN dnf install -y rpm-build dnf-plugins-core
2222
COPY --link SPECS /root/rpmbuild/SPECS
2323
RUN dnf builddep -y /root/rpmbuild/SPECS/*.spec
2424
COPY --link --from=golang /usr/local/go /usr/local/go

rpm/fedora-41/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG DISTRO
1818
ARG SUITE
1919
ENV DISTRO=${DISTRO}
2020
ENV SUITE=${SUITE}
21-
RUN dnf install -y rpm-build rpmlint dnf-plugins-core
21+
RUN dnf install -y rpm-build dnf-plugins-core
2222
# FIXME(thaJeztah): workaround for building on Fedora 41 on arm64
2323
#
2424
# This is the equivalent of https://github.com/docker/containerd-packaging/pull/390

rpm/rhel-8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ARG SUITE
3737
ENV DISTRO=${DISTRO}
3838
ENV SUITE=${SUITE}
3939

40-
RUN dnf install -y rpm-build rpmlint
40+
RUN dnf install -y rpm-build
4141
COPY --link SPECS /root/rpmbuild/SPECS
4242
RUN dnf builddep -y /root/rpmbuild/SPECS/*.spec
4343
COPY --link --from=golang /usr/local/go /usr/local/go

rpm/rhel-9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ARG SUITE
3737
ENV DISTRO=${DISTRO}
3838
ENV SUITE=${SUITE}
3939

40-
RUN dnf install -y rpm-build rpmlint
40+
RUN dnf install -y rpm-build
4141
COPY --link SPECS /root/rpmbuild/SPECS
4242
RUN dnf builddep -y /root/rpmbuild/SPECS/*.spec
4343
COPY --link --from=golang /usr/local/go /usr/local/go

0 commit comments

Comments
 (0)