diff options
author | Quentin Dufour <quentin@dufour.io> | 2021-02-01 08:40:59 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@dufour.io> | 2021-02-01 08:40:59 +0100 |
commit | 0a87d26e47646fb0a3e9a9399ea83b39640583b1 (patch) | |
tree | 66b79c1cd096fd1a0923aa35e93364d393f6b417 /app/jitsi/build/jitsi-meet | |
parent | cb69a1123cc36c792cb0993ae46c3700a7391a62 (diff) | |
download | infrastructure-0a87d26e47646fb0a3e9a9399ea83b39640583b1.tar.gz infrastructure-0a87d26e47646fb0a3e9a9399ea83b39640583b1.zip |
Polish configuration
Diffstat (limited to 'app/jitsi/build/jitsi-meet')
-rw-r--r-- | app/jitsi/build/jitsi-meet/Dockerfile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/app/jitsi/build/jitsi-meet/Dockerfile b/app/jitsi/build/jitsi-meet/Dockerfile index b2aac62..b74c04e 100644 --- a/app/jitsi/build/jitsi-meet/Dockerfile +++ b/app/jitsi/build/jitsi-meet/Dockerfile @@ -1,18 +1,15 @@ FROM debian:buster AS builder -ARG PREFIXV -ARG VERSION - RUN apt-get update && \ apt-get install -y curl && \ curl -sL https://deb.nodesource.com/setup_14.x | bash - && \ - apt-get install -y git nodejs make wget unzip && \ - wget https://github.com/jitsi/jitsi-meet/archive/${PREFIXV}${VERSION}.zip -O jitsi-meet.zip + apt-get install -y git nodejs make git unzip + +ARG MEET_TAG +RUN git clone --depth 1 --branch ${MEET_TAG} https://github.com/jitsi/jitsi-meet -RUN unzip jitsi-meet.zip && \ - mv jitsi-meet-*${VERSION} jitsi-meet && \ - cd jitsi-meet && \ - npm install && \ +WORKDIR jitsi-meet +RUN npm install && \ make FROM debian:buster |