We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e034d7 commit c53ed49Copy full SHA for c53ed49
1 file changed
Dockerfile
@@ -23,14 +23,15 @@ RUN make cross
23
################################################################
24
25
# Dockerfile.goreleaser should be kept roughly in sync
26
-FROM alpine:3.20.3
+FROM ubuntu:24.04
27
28
# Need to get these updates for k8s mount-utils library to work properly
29
-RUN apk update && \
30
- apk add --no-cache e2fsprogs-extra~=1.47.0 && \
31
- apk add --no-cache blkid~=2.40.1 && \
32
- apk add --no-cache xfsprogs-extra~=6.8.0 && \
33
- rm -rf /var/cache/apk/*
+RUN apt-get update && \
+ apt-get install -y --no-install-recommends \
+ e2fsprogs \
+ util-linux \
+ xfsprogs && \
34
+ rm -rf /var/lib/apt/lists/*
35
36
COPY --from=builder /build/dist/crusoe-csi-driver /usr/local/go/bin/crusoe-csi-driver
37
0 commit comments