prosody: update to latest stable version

Use the official repositories so we don't lag behind in fixes.
pull/300/head
Saúl Ibarra Corretgé 5 years ago
parent 75cb31b3bc
commit b15bb28279
  1. 8
      prosody/Dockerfile

@ -1,8 +1,13 @@
ARG JITSI_REPO=jitsi ARG JITSI_REPO=jitsi
FROM ${JITSI_REPO}/base FROM ${JITSI_REPO}/base
ADD https://prosody.im/files/prosody-debian-packages.key /tmp/prosody.key
RUN \ RUN \
apt-dpkg-wrap apt-get update \ apt-key add /tmp/prosody.key \
&& rm -f /tmp/prosody.key \
&& echo "deb http://packages.prosody.im/debian stretch main" > /etc/apt/sources.list.d/prosody.list \
&& apt-dpkg-wrap apt-get update \
&& apt-dpkg-wrap apt-get install -t stretch-backports -y \ && apt-dpkg-wrap apt-get install -t stretch-backports -y \
prosody \ prosody \
liblua5.2-dev \ liblua5.2-dev \
@ -12,6 +17,7 @@ RUN \
libssl1.0-dev \ libssl1.0-dev \
lua-basexx \ lua-basexx \
lua-ldap \ lua-ldap \
lua-sec \
luarocks \ luarocks \
git \ git \
gcc \ gcc \

Loading…
Cancel
Save