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 51ed384 commit 4028705Copy full SHA for 4028705
1 file changed
Dockerfile.goreleaser
@@ -1,14 +1,17 @@
1
################################################################
2
# STEP 2: build a small image and run crusoe-csi-driver binary #
3
4
-FROM alpine:3.20.3
+FROM ubuntu:24.04
5
6
# Need to get these updates for k8s mount-utils library to work properly
7
-RUN apk update && \
8
- apk add --no-cache e2fsprogs-extra~=1.47.0 && \
9
- apk add --no-cache blkid~=2.40.1 && \
10
- apk add --no-cache xfsprogs-extra~=6.8.0 && \
11
- rm -rf /var/cache/apk/*
+RUN apt-get update && \
+ apt-get install -y --no-install-recommends \
+ ca-certificates \
+ e2fsprogs \
+ nfs-common \
12
+ util-linux \
13
+ xfsprogs && \
14
+ rm -rf /var/lib/apt/lists/*
15
16
COPY crusoe-csi-driver /usr/local/go/bin/crusoe-csi-driver
17
0 commit comments