-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from apalia/update
Update Alpine base image
- Loading branch information
Showing
4 changed files
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
FROM alpine:3.12.3 | ||
FROM alpine:3.14.0 | ||
|
||
LABEL \ | ||
org.opencontainers.image.description="CloudStack CSI driver" \ | ||
org.opencontainers.image.source="https://github.com/apalia/cloudstack-csi-driver/" | ||
|
||
RUN apk add --no-cache xfsprogs e2fsprogs blkid ca-certificates | ||
RUN apk add --no-cache \ | ||
ca-certificates \ | ||
# Provides mkfs.ext2, mkfs.ext3, mkfs.ext4 (used by k8s.io/mount-utils) | ||
e2fsprogs \ | ||
# Provides mkfs.xfs | ||
xfsprogs \ | ||
# Provides blkid, also used by k8s.io/mount-utils | ||
blkid | ||
|
||
COPY ./bin/cloudstack-csi-driver /cloudstack-csi-driver | ||
ENTRYPOINT ["/cloudstack-csi-driver"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters