aboutsummaryrefslogtreecommitdiff
path: root/docker/jitsi/jitsi-conference-focus/Dockerfile
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2020-03-27 09:03:39 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2020-03-27 09:03:39 +0100
commitfd6e6aa1413602fc11bf79f7cf08120d996b8b3a (patch)
tree5e3b2e7f6ad788ef8a0f785056400442bb4d1cc7 /docker/jitsi/jitsi-conference-focus/Dockerfile
parent08101b82621457195c9a080237913d2c5a30208e (diff)
parenta95017cf1e1761fef1ec029105d1c25f954741d4 (diff)
downloadinfrastructure-fd6e6aa1413602fc11bf79f7cf08120d996b8b3a.tar.gz
infrastructure-fd6e6aa1413602fc11bf79f7cf08120d996b8b3a.zip
Merge branch 'feature/jitsi'
Diffstat (limited to 'docker/jitsi/jitsi-conference-focus/Dockerfile')
-rw-r--r--docker/jitsi/jitsi-conference-focus/Dockerfile22
1 files changed, 22 insertions, 0 deletions
diff --git a/docker/jitsi/jitsi-conference-focus/Dockerfile b/docker/jitsi/jitsi-conference-focus/Dockerfile
new file mode 100644
index 0000000..190010e
--- /dev/null
+++ b/docker/jitsi/jitsi-conference-focus/Dockerfile
@@ -0,0 +1,22 @@
+FROM debian:buster AS builder
+
+RUN apt-get update && \
+ apt-get install -y openjdk-11-jdk maven git unzip && \
+ git clone --depth=1 https://github.com/jitsi/jicofo.git && \
+ cd jicofo && \
+ mvn package -DskipTests -Dassembly.skipAssembly=false
+
+RUN cd jicofo && \
+ unzip target/jicofo-1.1-SNAPSHOT-archive.zip && \
+ mv jicofo-1.1-SNAPSHOT /srv/jicofo
+
+
+FROM debian:buster
+
+RUN apt-get update && \
+ apt-get install -y openjdk-11-jdk ca-certificates
+
+COPY --from=builder /srv/jicofo /srv/jicofo
+COPY jicofo /usr/local/bin/jicofo
+
+CMD ["/usr/local/bin/jicofo"]