Skip to content

Commit

Permalink
fix(CSI-163) missing ca-certificates package in wekafs container image
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyberezansky committed Oct 26, 2023
1 parent 3c1eec0 commit ad75e7e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ FROM alpine:3.18
LABEL maintainers="WekaIO, LTD"
LABEL description="Weka CSI Driver"
# Add util-linux to get a new version of losetup.
RUN apk add util-linux libselinux libselinux-utils util-linux pciutils usbutils coreutils binutils findutils grep bash
RUN apk add util-linux libselinux libselinux-utils util-linux pciutils usbutils coreutils binutils findutils grep bash \
# Update CA certificates
RUN apk add ca-certificates
RUN update-ca-certificates
COPY --from=go-builder /bin/wekafsplugin /wekafsplugin
ARG binary=/bin/wekafsplugin
ENTRYPOINT ["/wekafsplugin"]

0 comments on commit ad75e7e

Please sign in to comment.