From e516c37d32039db69ffdafeacab9677806bfd25e Mon Sep 17 00:00:00 2001 From: Aaron van Meerten Date: Thu, 13 Feb 2020 20:07:31 -0600 Subject: [PATCH] web: Dockerfile supports JITSI_MEET_VERSION --- web/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index 86a3fdd..aba0122 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -1,9 +1,10 @@ ARG JITSI_REPO=jitsi FROM ${JITSI_REPO}/base +ARG JITSI_MEET_VERSION RUN \ apt-dpkg-wrap apt-get update && \ - apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web && \ + apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web=1.0.${JITSI_MEET_VERSION}* && \ apt-dpkg-wrap apt-get install -y -t stretch-backports certbot && \ apt-cleanup && \ rm -f /etc/nginx/conf.d/default.conf && \