This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/docker/jitsi/jitsi-xmpp/Dockerfile

10 lines
268 B
Docker
Raw Normal View History

FROM debian:buster
RUN apt-get update && \
apt-get install -y prosody
2020-03-22 14:09:20 +00:00
COPY external_components.cfg.lua /etc/prosody/conf.d/external_components.cfg.lua
COPY entrypoint.sh /usr/local/bin/entrypoint
ENTRYPOINT ["/usr/local/bin/entrypoint"]
CMD ["/usr/bin/prosody"]