2020-08-15 03:26:33 +02:00
|
|
|
FROM nginx:1.19-alpine
|
|
|
|
|
|
|
|
RUN apk add subversion
|
|
|
|
|
2020-09-06 18:36:02 +02:00
|
|
|
ENV TAG v2.3-alpha-2
|
2020-08-15 03:26:33 +02:00
|
|
|
|
|
|
|
# get bbb-playback-presentation web files
|
|
|
|
RUN mkdir /www \
|
|
|
|
&& cd /www \
|
|
|
|
&& svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG/record-and-playback/presentation/playback/presentation/ \
|
|
|
|
&& rm -rf /www/presentation/.svn /www/presentation/0.*
|
|
|
|
|
|
|
|
COPY ./bbb /etc/nginx/bbb
|
|
|
|
COPY ./bigbluebutton /etc/nginx/conf.d/default.conf
|