File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -18,17 +18,18 @@ ARG ARCH=amd64
18
18
COPY ./_output/${ARCH}/blobplugin /blobplugin
19
19
20
20
RUN apt update && apt-mark unhold libcap2
21
- RUN clean-install ca-certificates libfuse-dev libcurl4-gnutls-dev libgnutls28-dev uuid-dev libgcrypt20 -dev util-linux mount udev wget e2fsprogs nfs-common netbase
21
+ RUN clean-install ca-certificates uuid-dev util-linux mount udev wget e2fsprogs nfs-common netbase
22
22
# install updated packages to fix CVE issues
23
23
RUN clean-install libssl1.1 libgssapi-krb5-2 libk5crypto3 libkrb5-3 libkrb5support0 libgmp10
24
24
RUN mkdir /blobfuse-proxy/
25
25
COPY ./_output/blobfuse-proxy.deb /blobfuse-proxy/
26
26
# for compatibility, remove this after v1.6.0 release (todo)
27
27
COPY deploy/blobfuse-proxy/v0.1.0/blobfuse-proxy-v0.1.0.deb /blobfuse-proxy/
28
- RUN wget -O /blobfuse-proxy/packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb
29
28
ARG ARCH=amd64
30
- RUN if [ "$ARCH" = "amd64" ] ; then dpkg -i /blobfuse-proxy/packages-microsoft-prod.deb && apt update && apt install blobfuse fuse -y; fi
31
- RUN apt remove wget -y
29
+ RUN if [ "$ARCH" = "amd64" ] ; then \
30
+ clean-install libcurl4-gnutls-dev && \
31
+ wget -O /blobfuse-proxy/packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb && \
32
+ dpkg -i /blobfuse-proxy/packages-microsoft-prod.deb && apt update && apt install blobfuse fuse -y && apt remove wget -y; fi
32
33
LABEL maintainers="andyzhangx"
33
34
LABEL description="Azure Blob Storage CSI driver"
34
35
You can’t perform that action at this time.
0 commit comments