diff --git a/Dockerfile b/Dockerfile index 4a9783c..0675858 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,13 @@ # Based on ubuntu ################################################################################ -FROM ubuntu:14.04 +FROM debian:9 -MAINTAINER Lloyd Watkin +MAINTAINER Prosody Developers + +# Some dependencies in stretch are not suitable for Prosody 0.11.x, so add our repo +RUN echo "deb http://packages.prosody.im/debian stretch main" > /etc/apt/sources.list.d/prosody.list +ADD prosody_packages.gpg /etc/apt/trusted.gpg.d/prosody.gpg # Install dependencies RUN apt-get update \ @@ -13,7 +17,7 @@ RUN apt-get update \ lsb-base \ adduser \ libidn11 \ - libssl1.0.0 \ + libssl1.1 \ lua-bitop \ lua-dbi-mysql \ lua-dbi-postgresql \ diff --git a/prosody_packages.gpg b/prosody_packages.gpg new file mode 100644 index 0000000..117d429 Binary files /dev/null and b/prosody_packages.gpg differ