mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-12-28 01:29:11 +01:00
c740f55e5a
quite some features (recording, SIP, transcription, etc.) are not working yet, but a milestone where it should finally take a commit
37 lines
1008 B
Docker
37 lines
1008 B
Docker
ARG BBB_BUILD_TAG
|
|
FROM bigbluebutton/bbb-build:$BBB_BUILD_TAG AS builder
|
|
|
|
|
|
RUN useradd --uid 2004 --user-group webrtc-sfu
|
|
|
|
COPY --from=source / /app
|
|
|
|
ENV NODE_ENV production
|
|
|
|
RUN cd /app \
|
|
&& cp config/default.example.yml config/production.yml \
|
|
&& npm install --unsafe-perm \
|
|
&& npm cache clear --force \
|
|
&& rm -rf node_modules/mediasoup/worker/out/Release/subprojects \
|
|
&& rm -rf node_modules/mediasoup/worker/out/Release/mediasoup-worker.p \
|
|
&& rm -rf node_modules/mediasoup/worker/out/Release/deps
|
|
|
|
|
|
# =============================
|
|
FROM node:18-bookworm-slim
|
|
RUN useradd --uid 2004 --user-group webrtc-sfu
|
|
ENV NODE_ENV production
|
|
|
|
COPY --from=builder /app /app
|
|
RUN mkdir /home/webrtc-sfu && chown -R webrtc-sfu:webrtc-sfu /app/config /home/webrtc-sfu
|
|
|
|
USER webrtc-sfu
|
|
WORKDIR /app
|
|
|
|
|
|
COPY config.yaml /etc/bigbluebutton/bbb-webrtc-sfu/production.yml
|
|
ENV NODE_ENV=production
|
|
ENV NODE_CONFIG_DIR=/app/config/:/etc/bigbluebutton/bbb-webrtc-sfu/
|
|
ENV ALLOW_CONFIG_MUTATIONS=true
|
|
CMD [ "npm", "start" ]
|