From 519211c2e6cce32aced9215a2a586111d9c51988 Mon Sep 17 00:00:00 2001 From: Sam Joseph Date: Mon, 30 Apr 2018 13:34:34 +0100 Subject: [PATCH 1/2] add gnupg2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fdd5307..f22db17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV DEBIAN_FRONTEND noninteractive ENV TERM xterm RUN apt-get update && \ - apt-get install -y wget dnsutils vim telnet && \ + apt-get install -y gnupg2 wget dnsutils vim telnet && \ echo 'deb http://download.jitsi.org/nightly/deb unstable/' >> /etc/apt/sources.list && \ wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add - && \ apt-get update && \ From fedcd64fe89ffce5cbb70aa8ccfa77a8753f8908 Mon Sep 17 00:00:00 2001 From: Sam Joseph Date: Mon, 30 Apr 2018 13:37:13 +0100 Subject: [PATCH 2/2] allow unauthenticated --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f22db17..599715d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,11 +4,11 @@ ENV DEBIAN_FRONTEND noninteractive ENV TERM xterm RUN apt-get update && \ - apt-get install -y gnupg2 wget dnsutils vim telnet && \ + apt-get install --allow-unauthenticated -y gnupg2 wget dnsutils vim telnet && \ echo 'deb http://download.jitsi.org/nightly/deb unstable/' >> /etc/apt/sources.list && \ wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add - && \ apt-get update && \ - apt-get -y install jitsi-meet && \ + apt-get --allow-unauthenticated -y install jitsi-meet && \ apt-get clean #ENV PUBLIC_HOSTNAME=192.168.59.103