Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dockerfile: Fix XFS fs type regression #52

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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: 3 additions & 3 deletions deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ ENV CSI_ENDPOINT=unix:///csi/csi.sock \
LB_CSI_LOG_TIME=true \
LB_CSI_LOG_FMT=text

RUN apk add --no-cache \
RUN apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/v3.14/main \
majst01 marked this conversation as resolved.
Show resolved Hide resolved
cryptsetup \
e2fsprogs e2fsprogs-extra \
xfsprogs \
xfsprogs-extra \
xfsprogs=5.12.0-r0 \
xfsprogs-extra=5.12.0-r0 \
lsblk \
blkid \
kmod \
Expand Down