diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-22 18:14:16 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-03-22 18:14:16 +0100 |
commit | 51b656e937aa469e8f09a43bd51dbdabdd4eea1f (patch) | |
tree | d7c37af948c667ac0fe4ded800047a63c52a2de8 /docker/jitsi/jitsi-conference-focus | |
parent | cef60898b5db0e314a435121606b04b1ad6ffbdd (diff) | |
download | infrastructure-51b656e937aa469e8f09a43bd51dbdabdd4eea1f.tar.gz infrastructure-51b656e937aa469e8f09a43bd51dbdabdd4eea1f.zip |
jicofo seems to work
Diffstat (limited to 'docker/jitsi/jitsi-conference-focus')
-rw-r--r-- | docker/jitsi/jitsi-conference-focus/Dockerfile | 2 | ||||
-rwxr-xr-x | docker/jitsi/jitsi-conference-focus/jicofo | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/docker/jitsi/jitsi-conference-focus/Dockerfile b/docker/jitsi/jitsi-conference-focus/Dockerfile index 7933ed9..190010e 100644 --- a/docker/jitsi/jitsi-conference-focus/Dockerfile +++ b/docker/jitsi/jitsi-conference-focus/Dockerfile @@ -14,7 +14,7 @@ RUN cd jicofo && \ FROM debian:buster RUN apt-get update && \ - apt-get install -y openjdk-11-jdk + apt-get install -y openjdk-11-jdk ca-certificates COPY --from=builder /srv/jicofo /srv/jicofo COPY jicofo /usr/local/bin/jicofo diff --git a/docker/jitsi/jitsi-conference-focus/jicofo b/docker/jitsi/jitsi-conference-focus/jicofo index 34b5548..30fc870 100755 --- a/docker/jitsi/jitsi-conference-focus/jicofo +++ b/docker/jitsi/jitsi-conference-focus/jicofo @@ -1,5 +1,8 @@ #!/bin/bash +cp ${JITSI_CERTS_FOLDER}/auth.jitsi.deuxfleurs.fr.crt /usr/local/share/ca-certificates/auth.jitsi.deuxfleurs.fr.crt +update-ca-certificates -f + /srv/jicofo/jicofo.sh \ --host=${JITSI_PROSODY_HOST} \ --domain=jitsi.deuxfleurs.fr \ |