diff options
Diffstat (limited to 'app_build/jitsi-conference-focus/Dockerfile')
-rw-r--r-- | app_build/jitsi-conference-focus/Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app_build/jitsi-conference-focus/Dockerfile b/app_build/jitsi-conference-focus/Dockerfile index 8999966..efb3010 100644 --- a/app_build/jitsi-conference-focus/Dockerfile +++ b/app_build/jitsi-conference-focus/Dockerfile @@ -1,9 +1,10 @@ FROM debian:buster AS builder -#ENV VERSION=4510 +ARG PREFIXV +ARG VERSION RUN apt-get update && \ apt-get install -y openjdk-11-jdk maven wget unzip && \ - wget https://github.com/jitsi/jicofo/archive/jitsi-meet_${VERSION}.zip -O jicofo.zip && \ + wget https://github.com/jitsi/jicofo/archive/${PREFIXV}${VERSION}.zip -O jicofo.zip && \ unzip jicofo.zip && \ mv jicofo-jitsi-meet_${VERSION} jicofo && \ cd jicofo && \ |