Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion collector/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,17 @@ RUN dnf install -y \
--releasever=10 \
--setopt=install_weak_deps=False \
--nodocs \
ca-certificates curl-minimal elfutils-libelf gzip less libcap-ng libstdc++ libuuid openssl tar tbb && \
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Each of gzip, less and tar is already here. Do you think we still need this PR?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool, closing it then

ca-certificates \
curl-minimal \
elfutils-libelf \
gzip \
less \
libcap-ng \
libstdc++ \
libuuid \
openssl \
tar \
tbb && \
dnf clean all --installroot=/out/ && \
rm -rf /out/var/cache/dnf /out/var/cache/yum

Expand Down
14 changes: 13 additions & 1 deletion collector/container/konflux.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,19 @@ RUN dnf install -y \
--setopt=install_weak_deps=False \
--setopt=reposdir=/etc/yum.repos.d \
--nodocs \
c-ares ca-certificates crypto-policies-scripts elfutils-libelf gzip less libcap-ng libcurl-minimal libstdc++ libuuid openssl tar tbb && \
c-ares \
ca-certificates \
crypto-policies-scripts \
elfutils-libelf \
gzip \
less \
libcap-ng \
libcurl-minimal \
libstdc++ \
libuuid \
openssl \
tar \
tbb && \
dnf clean all --installroot=/out/ && \
rm -rf /out/var/cache/dnf /out/var/cache/yum

Expand Down
Loading