diff --git a/Dockerfile b/Dockerfile index e73afa7..42683b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER David Personette # Install samba RUN export DEBIAN_FRONTEND='noninteractive' && \ apt-get update -qq && \ - apt-get install -qqy --no-install-recommends procps samba \ + apt-get install -qqy --no-install-recommends procps samba samba-vfs-modules\ $(apt-get -s dist-upgrade|awk '/^Inst.*ecurity/ {print $2}') &&\ useradd -c 'Samba User' -d /tmp -M -r smbuser && \ sed -i 's|^\( log file = \).*|\1/dev/stdout|' /etc/samba/smb.conf && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 9310dbe..b85fa87 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -4,7 +4,7 @@ MAINTAINER David Personette # Install samba RUN export DEBIAN_FRONTEND='noninteractive' && \ apt-get update -qq && \ - apt-get install -qqy --no-install-recommends procps samba \ + apt-get install -qqy --no-install-recommends procps samba samba-vfs-modules\ $(apt-get -s dist-upgrade|awk '/^Inst.*ecurity/ {print $2}') &&\ useradd -c 'Samba User' -d /tmp -M -r smbuser && \ sed -i 's|^\( log file = \).*|\1/dev/stdout|' /etc/samba/smb.conf && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 3de7db2..b28b3bc 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -4,7 +4,7 @@ MAINTAINER David Personette # Install samba RUN export DEBIAN_FRONTEND='noninteractive' && \ apt-get update -qq && \ - apt-get install -qqy --no-install-recommends procps samba \ + apt-get install -qqy --no-install-recommends procps samba samba-vfs-modules\ $(apt-get -s dist-upgrade|awk '/^Inst.*ecurity/ {print $2}') &&\ useradd -c 'Samba User' -d /tmp -M -r smbuser && \ sed -i 's|^\( log file = \).*|\1/dev/stdout|' /etc/samba/smb.conf && \