docker/mod/periodic/Dockerfile

18 lines
549 B
Docker
Raw Normal View History

2020-05-22 14:56:45 +02:00
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
2021-10-17 20:26:26 +02:00
COPY bbb-remove-old-recordings bbb-restart-kms bbb-resync-freeswitch entrypoint.sh /
2020-05-22 14:56:45 +02:00
2021-10-17 20:26:26 +02:00
RUN chmod +x bbb-remove-old-recordings
ENTRYPOINT ["/entrypoint.sh"]