infrastructure/app/jitsi/build/jitsi-meet/Dockerfile

24 lines
588 B
Docker
Raw Normal View History

2020-03-22 15:05:42 +00:00
FROM debian:buster AS builder
RUN apt-get update && \
2020-09-12 10:21:30 +00:00
apt-get install -y curl && \
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
2021-02-01 07:40:59 +00: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 09:27:32 +00:00
2021-02-01 07:40:59 +00:00
WORKDIR jitsi-meet
RUN npm install && \
2020-09-12 09:15:07 +00:00
make
2020-03-22 15:05:42 +00:00
FROM debian:buster
COPY --from=builder /jitsi-meet /srv/jitsi-meet
RUN apt-get update && \
apt-get install -y nginx && \
2021-01-30 11:06:14 +00:00
rm /etc/nginx/sites-enabled/* && \
rm /etc/nginx/nginx.conf
2020-03-22 15:05:42 +00:00
CMD ["/usr/sbin/nginx", "-g", "daemon off;"]