comparison docker/prosody/Dockerfile @ 107:470dafe3f5b6

docker (prosody): switched to prosody-trunk, as it is currently more stable than prosody-0.10
author Goffi <goffi@goffi.org>
date Sun, 28 Feb 2016 15:18:55 +0100
parents b69056368901
children
comparison
equal deleted inserted replaced
106:8b228fd053bc 107:470dafe3f5b6
31 echo deb http://packages.prosody.im/debian $(lsb_release -sc) main > /etc/apt/sources.list.d/prosody.list && \ 31 echo deb http://packages.prosody.im/debian $(lsb_release -sc) main > /etc/apt/sources.list.d/prosody.list && \
32 python -c 'import urllib2;import subprocess as s;s.Popen(["apt-key","add","-"], stdin=s.PIPE).communicate(urllib2.urlopen("https://prosody.im/files/prosody-debian-packages.key").read())' && \ 32 python -c 'import urllib2;import subprocess as s;s.Popen(["apt-key","add","-"], stdin=s.PIPE).communicate(urllib2.urlopen("https://prosody.im/files/prosody-debian-packages.key").read())' && \
33 apt-get update && \ 33 apt-get update && \
34 34
35 # and install prosody and apg (to generate passwords) 35 # and install prosody and apg (to generate passwords)
36 apt-get install -y apg prosody-0.10 && \ 36 apt-get install -y apg prosody-trunk && \
37 apt-get clean && \ 37 apt-get clean && \
38 38
39 # prosody user need to access (and write) certificates 39 # prosody user need to access (and write) certificates
40 adduser prosody tls-cert && \ 40 adduser prosody tls-cert && \
41 41