Skip to content

Commit 27c8463

Browse files
authored
HDDS-14523. Update Linux packages in ozone-runner (#53)
1 parent c16e2d0 commit 27c8463

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@
1717
FROM golang:1.17.8-buster AS go
1818
RUN go install github.com/rexray/gocsi/csc@latest
1919

20+
# Security update RHSA-2026:0067 breaks tar on arm64.
21+
# Remove exclusion if package newer than tar-1.34-9.el9_7 is available (and works OK)
2022
FROM rockylinux/rockylinux:9
2123
RUN set -eux ; \
22-
dnf install -y \
24+
dnf upgrade -y \
25+
--exclude tar \
26+
&& dnf install -y \
2327
bzip2 \
2428
diffutils \
2529
findutils \

0 commit comments

Comments
 (0)