From 65e14df4a5679d7443919ca4f39b54ed529dd9e7 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 17 Mar 2022 09:29:12 +0000 Subject: [PATCH] Change smbclient clone from git:// to https:// to allow unauthenticated use. --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 683cf71..a39f57c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,7 +68,7 @@ RUN \ tar \ unzip && \ echo "**** compile smbclient ****" && \ - git clone git://github.com/eduardok/libsmbclient-php.git /tmp/smbclient && \ + git clone https://github.com/eduardok/libsmbclient-php.git /tmp/smbclient && \ cd /tmp/smbclient && \ phpize8 && \ ./configure \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 830167a..b8393e9 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -68,7 +68,7 @@ RUN \ tar \ unzip && \ echo "**** compile smbclient ****" && \ - git clone git://github.com/eduardok/libsmbclient-php.git /tmp/smbclient && \ + git clone https://github.com/eduardok/libsmbclient-php.git /tmp/smbclient && \ cd /tmp/smbclient && \ phpize8 && \ ./configure \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index d5936a1..751b5f6 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -68,7 +68,7 @@ RUN \ tar \ unzip && \ echo "**** compile smbclient ****" && \ - git clone git://github.com/eduardok/libsmbclient-php.git /tmp/smbclient && \ + git clone https://github.com/eduardok/libsmbclient-php.git /tmp/smbclient && \ cd /tmp/smbclient && \ phpize8 && \ ./configure \