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-meet/Dockerfile

24 lines
588 B
Text
Raw Normal View History

2020-03-22 16:05:42 +01:00
FROM debian:buster AS builder
RUN apt-get update && \
2020-09-12 12:21:30 +02:00
apt-get install -y curl && \
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
2021-02-01 08:40:59 +01:00
apt-get install -y git nodejs make git unzip
ARG MEET_TAG
RUN git clone --depth 1 --branch ${MEET_TAG} https://github.com/jitsi/jitsi-meet
2020-09-12 11:27:32 +02:00
2021-02-01 08:40:59 +01:00
WORKDIR jitsi-meet
RUN npm install && \
2020-09-12 11:15:07 +02:00
make
2020-03-22 16:05:42 +01:00
FROM debian:buster
COPY --from=builder /jitsi-meet /srv/jitsi-meet
RUN apt-get update && \
apt-get install -y nginx && \
2021-01-30 12:06:14 +01:00
rm /etc/nginx/sites-enabled/* && \
rm /etc/nginx/nginx.conf
2020-03-22 16:05:42 +01:00
CMD ["/usr/sbin/nginx", "-g", "daemon off;"]