From a23e08ce20887efb4e158a02ffee1f775a0db89f Mon Sep 17 00:00:00 2001 From: Quentin Date: Sat, 12 Sep 2020 20:17:07 +0200 Subject: Refactor 2 --- app/build/jitsi-conference-focus/Dockerfile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 app/build/jitsi-conference-focus/Dockerfile (limited to 'app/build/jitsi-conference-focus/Dockerfile') diff --git a/app/build/jitsi-conference-focus/Dockerfile b/app/build/jitsi-conference-focus/Dockerfile new file mode 100644 index 0000000..f66c426 --- /dev/null +++ b/app/build/jitsi-conference-focus/Dockerfile @@ -0,0 +1,24 @@ +FROM debian:buster AS builder + +ARG PREFIXV +ARG VERSION +RUN apt-get update && \ + apt-get install -y openjdk-11-jdk maven wget unzip && \ + wget https://github.com/jitsi/jicofo/archive/${PREFIXV}${VERSION}.zip -O jicofo.zip + +RUN unzip jicofo.zip && \ + mv jicofo*${VERSION} jicofo && \ + cd jicofo && \ + mvn package -DskipTests -Dassembly.skipAssembly=false && \ + unzip target/jicofo-1.1-SNAPSHOT-archive.zip && \ + mv jicofo-1.1-SNAPSHOT /srv/build + +FROM debian:buster + +RUN apt-get update && \ + apt-get install -y openjdk-11-jdk ca-certificates + +COPY --from=builder /srv/build /srv/jicofo +COPY jicofo /usr/local/bin/jicofo + +CMD ["/usr/local/bin/jicofo"] -- cgit v1.2.3 From 7951d350354a9bcfff1b525f807b063464f2b691 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Sat, 12 Sep 2020 21:04:25 +0000 Subject: WIP jitsi fix --- app/build/jitsi-conference-focus/Dockerfile | 1 + 1 file changed, 1 insertion(+) (limited to 'app/build/jitsi-conference-focus/Dockerfile') diff --git a/app/build/jitsi-conference-focus/Dockerfile b/app/build/jitsi-conference-focus/Dockerfile index f66c426..93301e9 100644 --- a/app/build/jitsi-conference-focus/Dockerfile +++ b/app/build/jitsi-conference-focus/Dockerfile @@ -20,5 +20,6 @@ RUN apt-get update && \ COPY --from=builder /srv/build /srv/jicofo COPY jicofo /usr/local/bin/jicofo +COPY sip-communicator.properties /root/.sip-communicator/sip-communicator.properties CMD ["/usr/local/bin/jicofo"] -- cgit v1.2.3 From da034dabfcedcded964b6022153cf5a8a7ae9380 Mon Sep 17 00:00:00 2001 From: Quentin Date: Sun, 13 Sep 2020 11:46:14 +0200 Subject: Finally it seems to work --- app/build/jitsi-conference-focus/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/build/jitsi-conference-focus/Dockerfile') diff --git a/app/build/jitsi-conference-focus/Dockerfile b/app/build/jitsi-conference-focus/Dockerfile index 93301e9..e2c459c 100644 --- a/app/build/jitsi-conference-focus/Dockerfile +++ b/app/build/jitsi-conference-focus/Dockerfile @@ -16,7 +16,9 @@ RUN unzip jicofo.zip && \ FROM debian:buster RUN apt-get update && \ - apt-get install -y openjdk-11-jdk ca-certificates + apt-get install -y openjdk-11-jre-headless ca-certificates + +ENV JAVA_SYS_PROPS="-Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/root -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=.sip-communicator -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jitsi" COPY --from=builder /srv/build /srv/jicofo COPY jicofo /usr/local/bin/jicofo -- cgit v1.2.3