Skip to content

Commit

Permalink
Fix upstream and OKD builds (#1222)
Browse files Browse the repository at this point in the history
PR #1099 broke upstream and OKD builds as it added a dependency on
rsync.  quay.io/centos/centos:stream9 image does not ship rsync
by default.

Once we can use the new golang's recursive copy (CopyFS) functionality
in go 1.23 (golang/go#62484), use it and
remove the dependency on rsync.

Co-authored-by: Jiri Mencak <[email protected]>
  • Loading branch information
jmencak and jmencak authored Nov 21, 2024
1 parent be3fc39 commit 5f84739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/dockerfile_install_support.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -euo pipefail
set -o xtrace

INSTALL_PKGS="nmap-ncat procps-ng pciutils"
INSTALL_PKGS="nmap-ncat procps-ng pciutils rsync"

# TuneD pre-installation steps
cp -r /root/assets/bin/* /usr/local/bin
Expand Down

0 comments on commit 5f84739

Please sign in to comment.