We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e034d7 commit 51ed384Copy full SHA for 51ed384
1 file changed
Dockerfile
@@ -23,14 +23,17 @@ 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 \
+ ca-certificates \
+ e2fsprogs \
+ nfs-common \
34
+ util-linux \
35
+ xfsprogs && \
36
+ rm -rf /var/lib/apt/lists/*
37
38
COPY --from=builder /build/dist/crusoe-csi-driver /usr/local/go/bin/crusoe-csi-driver
39
0 commit comments