This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/app/jitsi/build/jitsi-conference-focus/Dockerfile

25 lines
685 B
Text
Raw Normal View History

2020-03-22 18:01:54 +01:00
FROM debian:buster AS builder
2020-09-12 11:15:07 +02:00
ARG PREFIXV
ARG VERSION
2020-03-22 18:01:54 +01:00
RUN apt-get update && \
apt-get install -y openjdk-11-jdk-headless maven wget unzip
2020-09-12 11:27:32 +02:00
RUN wget https://github.com/jitsi/jicofo/archive/${PREFIXV}${VERSION}.zip -O jicofo.zip
2020-09-12 11:27:32 +02:00
RUN unzip jicofo.zip && \
2020-09-12 18:01:34 +00:00
mv jicofo*${VERSION} jicofo && \
2020-03-22 18:01:54 +01:00
cd jicofo && \
2020-04-26 23:07:01 +02:00
mvn package -DskipTests -Dassembly.skipAssembly=false && \
2020-03-22 18:01:54 +01:00
unzip target/jicofo-1.1-SNAPSHOT-archive.zip && \
2020-04-26 23:07:01 +02:00
mv jicofo-1.1-SNAPSHOT /srv/build
2020-03-22 18:01:54 +01:00
FROM debian:buster
RUN apt-get update && \
2020-09-13 11:46:14 +02:00
apt-get install -y openjdk-11-jre-headless ca-certificates
2021-01-20 15:44:42 +01:00
COPY --from=builder /srv/build /usr/share/jicofo
COPY jicofo /usr/local/bin
2020-03-22 18:01:54 +01:00
CMD ["/usr/local/bin/jicofo"]