Added packages for network mounts

This commit is contained in:
Michele Cereda
2022-09-26 22:16:12 +02:00
parent 724d65dc3a
commit 166ff4848d

View File

@@ -4,8 +4,10 @@ RUN apt-get update \
&& apt-get install -y \
bindfs \
git-lfs \
nfs-common \
&& apt-get install -y --no-install-recommends samba \
&& rm -rf /var/lib/apt/lists/*
# `bindfs` requires the mountpoint to exist.
ARG MOUNTPOINT='/repos.rw'
RUN mkdir -p "$MOUNTPOINT"
ARG BINDFS_MOUNTPOINT='/repos.rw'
RUN mkdir -p "$BINDFS_MOUNTPOINT"