aboutsummaryrefslogtreecommitdiff
path: root/app_build/jitsi-conference-focus/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'app_build/jitsi-conference-focus/Dockerfile')
-rw-r--r--app_build/jitsi-conference-focus/Dockerfile24
1 files changed, 0 insertions, 24 deletions
diff --git a/app_build/jitsi-conference-focus/Dockerfile b/app_build/jitsi-conference-focus/Dockerfile
deleted file mode 100644
index f66c426..0000000
--- a/app_build/jitsi-conference-focus/Dockerfile
+++ /dev/null
@@ -1,24 +0,0 @@
-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"]