mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-23 00:23:25 +01:00
18 lines
549 B
Docker
18 lines
549 B
Docker
FROM debian:buster-slim
|
|
|
|
# -- install mongo cli
|
|
RUN apt-get update \
|
|
&& apt-get install -y wget libcurl4 \
|
|
&& wget https://repo.mongodb.org/apt/debian/dists/buster/mongodb-org/4.2/main/binary-amd64/mongodb-org-shell_4.2.6_amd64.deb \
|
|
&& dpkg -i mongodb*.deb \
|
|
&& rm mongodb*.deb
|
|
|
|
# -- install docker cli
|
|
COPY --from=library/docker:latest /usr/local/bin/docker /usr/bin/docker
|
|
|
|
COPY bbb-remove-old-recordings bbb-restart-kms bbb-resync-freeswitch entrypoint.sh /
|
|
|
|
RUN chmod +x bbb-remove-old-recordings
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|