From 6230ec947c91b69943417ceb70c884bd6bf52e1b Mon Sep 17 00:00:00 2001 From: Kai Date: Mon, 9 May 2016 04:01:38 +0200 Subject: [PATCH] adding --no-check-certificate to avoid installing ca-certificates fix for https://github.com/patrickbusch/homebridge-docker/issues/11 --- Dockerfile.specific-PI | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.specific-PI b/Dockerfile.specific-PI index 5b06154..174f816 100644 --- a/Dockerfile.specific-PI +++ b/Dockerfile.specific-PI @@ -4,6 +4,6 @@ #RUN curl -sLS https://apt.adafruit.com/add | sudo bash RUN echo "deb http://apt.adafruit.com/raspbian/ jessie main" >> /etc/apt/sources.list -RUN wget -O - -q https://apt.adafruit.com/apt.adafruit.com.gpg.key | apt-key add - +RUN wget --no-check-certificate -O - -q https://apt.adafruit.com/apt.adafruit.com.gpg.key | apt-key add - RUN apt-get update -RUN apt-get install -y node \ No newline at end of file +RUN apt-get install -y node