19 lines
330 B
Docker
19 lines
330 B
Docker
# 2026-06-11 Hyperling
|
|
# https://wiki.debian.org/InstallingProsody
|
|
# https://prosody.im/doc/configure
|
|
|
|
## Image ##
|
|
FROM debian:trixie-slim
|
|
|
|
## Setup ##
|
|
# System Dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -y prosody \
|
|
bash sudo htop
|
|
|
|
## Main ##
|
|
# Install + Run Website
|
|
WORKDIR /root
|
|
USER root
|
|
CMD tail -F /var/log/TBD
|