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

25 lines
701 B
Docker
Raw Normal View History

2020-03-22 15:05:42 +00:00
FROM debian:buster AS builder
2020-09-12 09:15:07 +00:00
ARG PREFIXV
ARG VERSION
2020-03-22 15:05:42 +00:00
RUN apt-get update && \
2020-04-27 17:02:00 +00:00
apt-get install -y npm git nodejs make wget unzip && \
2020-09-12 09:15:07 +00:00
wget https://github.com/jitsi/jitsi-meet/archive/${PREFIXV}${VERSION}.zip -O jitsi-meet.zip && \
2020-04-27 17:02:00 +00:00
unzip jitsi-meet.zip && \
mv jitsi-meet-${VERSION} jitsi-meet && \
2020-03-22 15:05:42 +00:00
cd jitsi-meet && \
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 && \
rm /etc/nginx/sites-enabled/*
COPY config.js /srv/jitsi-meet/config.js
COPY entrypoint.sh /usr/local/bin/entrypoint
ENTRYPOINT ["/usr/local/bin/entrypoint"]
CMD ["/usr/sbin/nginx", "-g", "daemon off;"]