File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- ARG ARCH
16
-
17
- FROM k8s.gcr.io/build-image/debian-base:buster-v1.6.0
15
+ FROM k8s.gcr.io/build-image/debian-base:bullseye-v1.0.0
18
16
COPY ./_output/blobplugin /blobplugin
19
- RUN apt-get update && clean-install ca-certificates pkg-config libfuse-dev cmake libcurl4-gnutls-dev libgnutls28-dev uuid-dev libgcrypt20-dev wget
17
+ RUN apt update && apt-mark unhold libcap2
18
+ RUN clean-install ca-certificates libfuse-dev libcurl4-gnutls-dev libgnutls28-dev uuid-dev libgcrypt20-dev util-linux mount udev wget e2fsprogs nfs-common libssl1.1
20
19
RUN wget -O /tmp/packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb && dpkg -i /tmp/packages-microsoft-prod.deb && apt-get update && apt install blobfuse fuse -y && rm -f /tmp/packages-microsoft-prod.deb
20
+ # this is a workaround to install nfs-kernel-server and don't quit with error
21
+ RUN apt install nfs-kernel-server -y || true
21
22
RUN apt remove wget -y
22
- # this is a workaround to install nfs-common & nfs-kernel-server and don't quit with error
23
- RUN apt-get update && apt install nfs-common nfs-kernel-server -y || true
24
23
LABEL maintainers="andyzhangx"
25
24
LABEL description="Azure Blob Storage CSI driver"
26
25
27
26
ENTRYPOINT ["/blobplugin" ]
27
+
You can’t perform that action at this time.
0 commit comments