更新 'mod/html5/Dockerfile'

This commit is contained in:
zhongjin 2023-02-18 23:42:39 +08:00
parent 6083b4ab14
commit 56979f40f7

View File

@ -7,9 +7,9 @@ FROM onenetcom/docker-bbb-build:$BBB_BUILD_TAG AS builder
ARG TAG_HTML5 ARG TAG_HTML5
#RUN svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG_HTML5/bigbluebutton-html5 /source \ #RUN svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG_HTML5/bigbluebutton-html5 /source \
RUN git clone https://git-x.kongjian.xin/BigBlueButton/bigbluebutton-v2.5.11.git \ RUN git clone -b $TAG_HTML5 https://git-x.kongjian.xin/BigBlueButton/bigbluebutton.git \
&& mv bigbluebutton-v2.5.11/bigbluebutton-html5 / \ && mv bigbluebutton/bigbluebutton-html5 / \
&& rm -rf bigbluebutton-v2.5.11 \ && rm -rf bigbluebutton \
&& cd /bigbluebutton-html5 \ && cd /bigbluebutton-html5 \
&& meteor npm ci --production \ && meteor npm ci --production \
&& METEOR_DISABLE_OPTIMISTIC_CACHING=1 meteor build --architecture os.linux.x86_64 --allow-superuser --directory /app \ && METEOR_DISABLE_OPTIMISTIC_CACHING=1 meteor build --architecture os.linux.x86_64 --allow-superuser --directory /app \