From 4318f18a129f5b7c32201a7764bca7c77f0d6343 Mon Sep 17 00:00:00 2001 From: kev Date: Thu, 21 May 2020 19:03:38 +0800 Subject: [PATCH] update motion-arm --- motion-arm/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/motion-arm/Dockerfile b/motion-arm/Dockerfile index 730c3c8..d8808fe 100644 --- a/motion-arm/Dockerfile +++ b/motion-arm/Dockerfile @@ -11,7 +11,11 @@ ENV MOTION_URL=https://github.com/Motion-Project/motion/releases/download/releas RUN set -xe \ && apt-get update \ - && apt-get install -y curl libraspberrypi0 mosquitto-clients \ + && apt-get install -y curl gnupg mosquitto-clients openssh-client \ + && echo "deb http://archive.raspberrypi.org/debian/ buster main" > /etc/apt/sources.list.d/raspi.list \ + && curl -sSL "http://archive.raspberrypi.org/debian/raspberrypi.gpg.key" | apt-key add - \ + && apt-get update \ + && apt-get install -y libraspberrypi0 \ && curl -sSL ${MOTION_URL} -o ${MOTION_FILE} \ && (dpkg -i ${MOTION_FILE} || apt-get -f install -y) \ && sed -i -e 's/^daemon on/daemon off/' \