diff --git a/12.0/apache/Dockerfile b/12.0/apache/Dockerfile index 338de7a1..b981a024 100644 --- a/12.0/apache/Dockerfile +++ b/12.0/apache/Dockerfile @@ -114,7 +114,7 @@ RUN set -ex; \ dirmngr \ "; \ apt-get update; \ - apt-get install -y --no-install-recommends $fetchDeps; \ + apt-get install -y --no-install-recommends $fetchDeps smbclient; \ \ curl -fsSL -o nextcloud.tar.bz2 \ "https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \ diff --git a/12.0/fpm/Dockerfile b/12.0/fpm/Dockerfile index e53bf612..81dac57b 100644 --- a/12.0/fpm/Dockerfile +++ b/12.0/fpm/Dockerfile @@ -106,7 +106,7 @@ RUN set -ex; \ dirmngr \ "; \ apt-get update; \ - apt-get install -y --no-install-recommends $fetchDeps; \ + apt-get install -y --no-install-recommends $fetchDeps smbclient; \ \ curl -fsSL -o nextcloud.tar.bz2 \ "https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \ diff --git a/13.0/apache/Dockerfile b/13.0/apache/Dockerfile index 3ee56d07..75235455 100644 --- a/13.0/apache/Dockerfile +++ b/13.0/apache/Dockerfile @@ -114,7 +114,7 @@ RUN set -ex; \ dirmngr \ "; \ apt-get update; \ - apt-get install -y --no-install-recommends $fetchDeps; \ + apt-get install -y --no-install-recommends $fetchDeps smbclient; \ \ curl -fsSL -o nextcloud.tar.bz2 \ "https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \ diff --git a/13.0/fpm/Dockerfile b/13.0/fpm/Dockerfile index a3feaf2f..1dd4eee1 100644 --- a/13.0/fpm/Dockerfile +++ b/13.0/fpm/Dockerfile @@ -106,7 +106,7 @@ RUN set -ex; \ dirmngr \ "; \ apt-get update; \ - apt-get install -y --no-install-recommends $fetchDeps; \ + apt-get install -y --no-install-recommends $fetchDeps smbclient; \ \ curl -fsSL -o nextcloud.tar.bz2 \ "https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \ diff --git a/14.0/apache/Dockerfile b/14.0/apache/Dockerfile index e526c83b..5d5f6c3b 100644 --- a/14.0/apache/Dockerfile +++ b/14.0/apache/Dockerfile @@ -114,7 +114,7 @@ RUN set -ex; \ dirmngr \ "; \ apt-get update; \ - apt-get install -y --no-install-recommends $fetchDeps; \ + apt-get install -y --no-install-recommends $fetchDeps smbclient; \ \ curl -fsSL -o nextcloud.tar.bz2 \ "https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \ diff --git a/14.0/fpm/Dockerfile b/14.0/fpm/Dockerfile index 70496096..d5aa0155 100644 --- a/14.0/fpm/Dockerfile +++ b/14.0/fpm/Dockerfile @@ -106,7 +106,7 @@ RUN set -ex; \ dirmngr \ "; \ apt-get update; \ - apt-get install -y --no-install-recommends $fetchDeps; \ + apt-get install -y --no-install-recommends $fetchDeps smbclient; \ \ curl -fsSL -o nextcloud.tar.bz2 \ "https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \ diff --git a/Dockerfile-debian.template b/Dockerfile-debian.template index ab6f88f9..72cdc546 100644 --- a/Dockerfile-debian.template +++ b/Dockerfile-debian.template @@ -105,7 +105,7 @@ RUN set -ex; \ dirmngr \ "; \ apt-get update; \ - apt-get install -y --no-install-recommends $fetchDeps; \ + apt-get install -y --no-install-recommends $fetchDeps smbclient; \ \ curl -fsSL -o nextcloud.tar.bz2 \ "%%BASE_DOWNLOAD_URL%%/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \