We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3b7b65 commit 65d81fbCopy full SHA for 65d81fb
Dockerfile
@@ -41,9 +41,10 @@ RUN set -x && \
41
42
# install local RPMs if available
43
COPY ./rpms/ /opt/ci/rpms/
44
-RUN rm /opt/ci/rpms/*-{devel,debuginfo,debugsource}*.rpm; \
+RUN set -x && \
45
+ rm /opt/ci/rpms/*-{devel,debuginfo,debugsource}*.rpm; \
46
if [ -n "$(find /opt/ci/rpms/ -maxdepth 1 -name '*.rpm' -print -quit)" ]; then \
- dnf5 -y install /opt/ci/rpms/*.rpm --disableplugin=local; \
47
+ dnf5 -y install /opt/ci/rpms/*.rpm --disableplugin=local && \
48
dnf5 -y versionlock add $(rpm -qp --queryformat '%{NAME}\n' /opt/ci/rpms/*.rpm | sort | uniq); \
49
fi
50
0 commit comments