From 32c9e0e9f64c9a7c1a4660e6731e09c1f218066f Mon Sep 17 00:00:00 2001 From: Kelvin Chen Date: Mon, 21 Nov 2016 00:25:44 -0500 Subject: [PATCH] Fix Syncthing build failing --- Dockerfiles/syncthing/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfiles/syncthing/Dockerfile b/Dockerfiles/syncthing/Dockerfile index 1fbdf6f..5c7fda6 100644 --- a/Dockerfiles/syncthing/Dockerfile +++ b/Dockerfiles/syncthing/Dockerfile @@ -2,10 +2,11 @@ FROM buildpack-deps:xenial-curl MAINTAINER Kelvin Chen RUN curl -sL https://syncthing.net/release-key.txt | apt-key add - \ - && echo "deb http://apt.syncthing.net/ syncthing release" >> \ + && echo "deb https://apt.syncthing.net/ syncthing release" >> \ /etc/apt/sources.list.d/syncthing.list \ && apt-get update \ - && apt-get install syncthing \ + && apt-get install -y apt-transport-https \ + && apt-get install -y syncthing \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*