forked from Deuxfleurs/infrastructure
9 lines
268 B
Docker
9 lines
268 B
Docker
FROM debian:buster
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y prosody
|
|
|
|
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"]
|