Skip to content
Merged
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
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@
FROM golang:1.17.8-buster AS go
RUN go install github.com/rexray/gocsi/csc@latest

# Security update RHSA-2026:0067 breaks tar on arm64.
# Remove exclusion if package newer than tar-1.34-9.el9_7 is available (and works OK)
FROM rockylinux/rockylinux:9
RUN set -eux ; \
dnf install -y \
dnf upgrade -y \
--exclude tar \
&& dnf install -y \
bzip2 \
diffutils \
findutils \
Expand Down