aboutsummaryrefslogtreecommitdiff
path: root/app_build/jitsi-meet
diff options
context:
space:
mode:
authorQuentin <quentin@deuxfleurs.fr>2020-09-12 12:21:30 +0200
committerQuentin <quentin@deuxfleurs.fr>2020-09-12 12:21:30 +0200
commitb00fc0eaf1004f57bd0c44b56422e2920690483f (patch)
treeb36e3473ee41e940b1577adfaac6e6ec20147011 /app_build/jitsi-meet
parent0c05730a5df3fa7f5e9884f265f4903453dfffb2 (diff)
downloadinfrastructure-b00fc0eaf1004f57bd0c44b56422e2920690483f.tar.gz
infrastructure-b00fc0eaf1004f57bd0c44b56422e2920690483f.zip
Use a more recent npm
Diffstat (limited to 'app_build/jitsi-meet')
-rw-r--r--app_build/jitsi-meet/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/app_build/jitsi-meet/Dockerfile b/app_build/jitsi-meet/Dockerfile
index 16b6557..feef115 100644
--- a/app_build/jitsi-meet/Dockerfile
+++ b/app_build/jitsi-meet/Dockerfile
@@ -4,7 +4,9 @@ ARG PREFIXV
ARG VERSION
RUN apt-get update && \
- apt-get install -y npm git nodejs make wget unzip && \
+ 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
RUN unzip jitsi-meet.zip && \