forked from Deuxfleurs/infrastructure
22 lines
579 B
Docker
22 lines
579 B
Docker
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"]
|