diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-02-02 14:48:59 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-02-02 14:48:59 +0100 |
commit | 2d6616195f011a131ad166aebdceb771c9fc573f (patch) | |
tree | ed681bfe7a28d31603ef3c3275bda4e004d3cd80 /cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile | |
parent | 6445d55e3e651d1728f722377c65504c4fe91cf6 (diff) | |
download | nixcfg-2d6616195f011a131ad166aebdceb771c9fc573f.tar.gz nixcfg-2d6616195f011a131ad166aebdceb771c9fc573f.zip |
upgrade the building logic
Diffstat (limited to 'cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile')
-rw-r--r-- | cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile b/cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile index d8c7cf8..2e629e9 100644 --- a/cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile +++ b/cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile @@ -2,13 +2,17 @@ FROM debian:bookworm AS builder RUN apt-get update && \ apt-get install -y curl && \ - curl -sL https://deb.nodesource.com/setup_16.x | bash - && \ + curl -sL https://deb.nodesource.com/setup_19.x | bash - && \ 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 WORKDIR jitsi-meet +# @FIXME read the following SO post to understand why we declare this option +# https://stackoverflow.com/a/73027407 +COPY *.patch . +RUN git apply 0001-allow-broken-openssl-routines.patch RUN npm install && \ make |