2020-06-11 10:41:42 +00:00
|
|
|
FROM debian:buster-slim
|
2016-10-18 20:20:59 +00:00
|
|
|
|
2020-10-14 09:49:30 +00:00
|
|
|
ARG BUILD_DATE
|
|
|
|
ARG VCS_REF
|
|
|
|
ARG VERSION
|
|
|
|
|
2021-04-17 11:32:49 +00:00
|
|
|
ARG LUAROCKS_VERSION=3.7.0
|
2021-02-16 15:46:07 +00:00
|
|
|
ARG PROSODY_VERSION=0.11.8
|
2020-10-14 09:49:30 +00:00
|
|
|
|
2021-04-17 11:32:49 +00:00
|
|
|
ARG LUAROCKS_SHA256=9255d97fee95cec5b54fc6ac718b11bf5029e45bed7873e053314919cd448551
|
2021-02-16 15:46:07 +00:00
|
|
|
ARG PROSODY_DOWNLOAD_SHA256=830f183b98d5742d81e908d2d8e3258f1b538dad7411f06fda5b2cc5c75068f8
|
2020-10-14 09:49:30 +00:00
|
|
|
|
|
|
|
LABEL luarocks.version="${LUAROCKS_VERSION}"
|
|
|
|
LABEL org.opencontainers.image.authors="Sara Smiseth"
|
|
|
|
LABEL org.opencontainers.image.created="${BUILD_DATE}"
|
|
|
|
LABEL org.opencontainers.image.description="This docker image provides you with a configured Prosody XMPP server."
|
|
|
|
LABEL org.opencontainers.image.documentation="https://github.com/SaraSmiseth/prosody/blob/dev/readme.md"
|
|
|
|
LABEL org.opencontainers.image.revision="${VCS_REF}"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/SaraSmiseth/prosody/archive/dev.zip"
|
|
|
|
LABEL org.opencontainers.image.title="prosody"
|
|
|
|
LABEL org.opencontainers.image.url="https://github.com/SaraSmiseth/prosody"
|
|
|
|
LABEL org.opencontainers.image.vendor="Sara Smiseth"
|
|
|
|
LABEL org.opencontainers.image.version="${VERSION}"
|
|
|
|
LABEL prosody.version="${PROSODY_VERSION}"
|
|
|
|
|
2021-03-12 19:32:46 +00:00
|
|
|
# TODO just for mod_invites, makes the image from 90MB to 150MB, just do it like this?
|
|
|
|
#libjs-bootstrap4
|
|
|
|
#libjs-jquery
|
|
|
|
|
2016-10-18 20:20:59 +00:00
|
|
|
RUN apt-get update \
|
|
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
2018-11-27 19:33:37 +00:00
|
|
|
libevent-dev `# this is no build dependency, but needed for luaevent` \
|
2020-05-25 16:51:40 +00:00
|
|
|
libidn11 \
|
2021-03-12 19:32:46 +00:00
|
|
|
libjs-bootstrap4 \
|
|
|
|
libjs-jquery \
|
2021-05-07 12:06:29 +00:00
|
|
|
libpq-dev \
|
|
|
|
libsqlite3-0 \
|
2018-11-27 19:33:37 +00:00
|
|
|
lua5.2 \
|
2018-01-13 23:31:10 +00:00
|
|
|
lua-bitop \
|
2021-05-07 12:06:29 +00:00
|
|
|
lua-dbi-mysql \
|
2016-10-18 20:20:59 +00:00
|
|
|
lua-expat \
|
|
|
|
lua-filesystem \
|
|
|
|
lua-socket \
|
|
|
|
lua-sec \
|
|
|
|
wget \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2018-11-27 19:33:37 +00:00
|
|
|
RUN buildDeps='gcc git libc6-dev libidn11-dev liblua5.2-dev libsqlite3-dev libssl-dev make unzip' \
|
2016-10-18 20:20:59 +00:00
|
|
|
&& set -x \
|
|
|
|
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
2018-11-27 19:33:37 +00:00
|
|
|
\
|
2020-10-14 09:49:30 +00:00
|
|
|
&& wget -O prosody.tar.gz "https://prosody.im/downloads/source/prosody-${PROSODY_VERSION}.tar.gz" \
|
2020-10-01 16:22:06 +00:00
|
|
|
&& echo "${PROSODY_DOWNLOAD_SHA256} *prosody.tar.gz" | sha256sum -c - \
|
2016-10-18 20:20:59 +00:00
|
|
|
&& mkdir -p /usr/src/prosody \
|
|
|
|
&& tar -xzf prosody.tar.gz -C /usr/src/prosody --strip-components=1 \
|
|
|
|
&& rm prosody.tar.gz \
|
2018-11-27 19:33:37 +00:00
|
|
|
&& cd /usr/src/prosody && ./configure \
|
2020-05-25 16:50:57 +00:00
|
|
|
&& make \
|
|
|
|
&& make install \
|
2018-11-27 19:33:37 +00:00
|
|
|
&& cd / && rm -r /usr/src/prosody \
|
|
|
|
\
|
|
|
|
&& mkdir /usr/src/luarocks \
|
|
|
|
&& cd /usr/src/luarocks \
|
2020-05-25 16:30:14 +00:00
|
|
|
&& wget https://luarocks.org/releases/luarocks-${LUAROCKS_VERSION}.tar.gz \
|
2020-10-01 16:22:06 +00:00
|
|
|
&& echo "${LUAROCKS_SHA256} luarocks-${LUAROCKS_VERSION}.tar.gz" | sha256sum -c - \
|
2020-05-25 16:30:14 +00:00
|
|
|
&& tar zxpf luarocks-${LUAROCKS_VERSION}.tar.gz \
|
|
|
|
&& cd luarocks-${LUAROCKS_VERSION} \
|
2018-11-27 19:33:37 +00:00
|
|
|
&& ./configure \
|
2020-06-11 10:41:42 +00:00
|
|
|
&& make bootstrap \
|
2018-11-27 19:33:37 +00:00
|
|
|
&& cd / && rm -r /usr/src/luarocks \
|
|
|
|
\
|
|
|
|
&& luarocks install luaevent \
|
|
|
|
&& luarocks install luadbi \
|
2021-05-07 12:06:29 +00:00
|
|
|
`#&& luarocks install luadbi-mysql MYSQL_INCDIR=/usr/include/mariadb/` \
|
|
|
|
&& luarocks install luadbi-postgresql POSTGRES_INCDIR=/usr/include/postgresql/ \
|
2018-11-27 19:33:37 +00:00
|
|
|
&& luarocks install luadbi-sqlite3 \
|
2020-10-10 06:55:43 +00:00
|
|
|
&& luarocks install stringy \
|
2018-11-27 19:33:37 +00:00
|
|
|
\
|
2016-10-18 20:20:59 +00:00
|
|
|
&& apt-get purge -y --auto-remove $buildDeps
|
|
|
|
|
2020-06-01 09:10:19 +00:00
|
|
|
EXPOSE 5000 5222 5223 5269 5347 5280 5281
|
2016-10-18 20:20:59 +00:00
|
|
|
|
|
|
|
RUN groupadd -r prosody \
|
|
|
|
&& useradd -r -g prosody prosody \
|
|
|
|
&& chown prosody:prosody /usr/local/var/lib/prosody
|
|
|
|
|
2020-10-10 06:55:43 +00:00
|
|
|
RUN mkdir -p /var/run/prosody/ \
|
|
|
|
&& chown prosody:prosody /var/run/prosody/
|
|
|
|
|
2016-10-18 20:20:59 +00:00
|
|
|
# https://github.com/prosody/prosody-docker/issues/25
|
|
|
|
ENV __FLUSH_LOG yes
|
|
|
|
|
|
|
|
VOLUME ["/usr/local/var/lib/prosody"]
|
|
|
|
|
|
|
|
COPY prosody.cfg.lua /usr/local/etc/prosody/prosody.cfg.lua
|
2021-05-07 12:06:29 +00:00
|
|
|
COPY docker-entrypoint.bash /entrypoint.bash
|
2016-10-18 20:20:59 +00:00
|
|
|
COPY conf.d/*.cfg.lua /usr/local/etc/prosody/conf.d/
|
|
|
|
|
2020-06-27 17:06:27 +00:00
|
|
|
COPY *.bash /usr/local/bin/
|
|
|
|
|
2020-06-27 17:53:23 +00:00
|
|
|
RUN download-prosody-modules.bash \
|
|
|
|
&& docker-prosody-module-install.bash \
|
2020-05-30 15:16:48 +00:00
|
|
|
bookmarks `# XEP-0411: Bookmarks Conversion` \
|
2016-10-18 20:20:59 +00:00
|
|
|
carbons `# message carbons (XEP-0280)` \
|
2020-06-05 06:08:32 +00:00
|
|
|
cloud_notify `# XEP-0357: Push Notifications` \
|
2016-10-18 20:20:59 +00:00
|
|
|
csi `# client state indication (XEP-0352)` \
|
|
|
|
e2e_policy `# require end-2-end encryption` \
|
|
|
|
filter_chatstates `# disable "X is typing" type messages` \
|
2021-03-12 19:32:46 +00:00
|
|
|
http_libjs `# invite-based account registration web dependency` \
|
|
|
|
http_upload `# file sharing (XEP-0363)` \
|
|
|
|
invites `# invite-based account registration` \
|
|
|
|
invites_adhoc \
|
|
|
|
invites_page \
|
|
|
|
invites_register \
|
|
|
|
invites_register_web \
|
|
|
|
register_apps \
|
2016-10-18 20:20:59 +00:00
|
|
|
smacks `# stream management (XEP-0198)` \
|
2020-06-27 17:47:57 +00:00
|
|
|
throttle_presence `# presence throttling in CSI` \
|
2020-06-27 17:53:23 +00:00
|
|
|
vcard_muc `# XEP-0153: vCard-Based Avatar (MUC)` \
|
|
|
|
&& rm -rf "/usr/src/prosody-modules"
|
2020-06-27 17:06:27 +00:00
|
|
|
|
2016-10-18 20:20:59 +00:00
|
|
|
USER prosody
|
|
|
|
|
2021-05-07 12:06:29 +00:00
|
|
|
ENTRYPOINT ["/entrypoint.bash"]
|
2020-05-26 15:27:48 +00:00
|
|
|
CMD ["prosody", "-F"]
|
2018-11-27 19:33:37 +00:00
|
|
|
|