mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-26 18:13:21 +01:00
14 lines
413 B
Docker
14 lines
413 B
Docker
FROM nginx:1.19-alpine
|
|
|
|
RUN apk add subversion
|
|
|
|
ENV TAG v2.2.20
|
|
|
|
# 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 |