We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c16e2d0 commit 27c8463Copy full SHA for 27c8463
Dockerfile
@@ -17,9 +17,13 @@
17
FROM golang:1.17.8-buster AS go
18
RUN go install github.com/rexray/gocsi/csc@latest
19
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)
22
FROM rockylinux/rockylinux:9
23
RUN set -eux ; \
- dnf install -y \
24
+ dnf upgrade -y \
25
+ --exclude tar \
26
+ && dnf install -y \
27
bzip2 \
28
diffutils \
29
findutils \
0 commit comments