From bb0b611e4fc74f172a235faa3bd313b96d8904de Mon Sep 17 00:00:00 2001 From: hrtkpf <42646788+hrtkpf@users.noreply.github.com> Date: Mon, 30 Mar 2020 04:10:10 +0200 Subject: [PATCH] download unifi deb package via https (#526) --- unifi/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unifi/Dockerfile b/unifi/Dockerfile index b6b9e4a..804c174 100644 --- a/unifi/Dockerfile +++ b/unifi/Dockerfile @@ -95,7 +95,7 @@ RUN apt-get update && apt-get install -y \ curl \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* \ - && curl -o /tmp/unifi.deb -L "http://dl.ubnt.com/unifi/${UNIFI_VERSION}/unifi_sysvinit_all.deb" \ + && curl -o /tmp/unifi.deb -L "https://dl.ubnt.com/unifi/${UNIFI_VERSION}/unifi_sysvinit_all.deb" \ && dpkg -i /tmp/unifi.deb \ && rm -rf /tmp/unifi.deb \ && echo "Build complete."