Kaynağa Gözat

prosody: update to latest stable version

Use the official repositories so we don't lag behind in fixes.
Saúl Ibarra Corretgé 5 yıl önce
ebeveyn
işleme
b15bb28
1 değiştirilmiş dosya ile 7 ekleme ve 1 silme
  1. 7 1
      prosody/Dockerfile

+ 7 - 1
prosody/Dockerfile

@@ -1,8 +1,13 @@
 ARG JITSI_REPO=jitsi
 FROM ${JITSI_REPO}/base
 
+ADD https://prosody.im/files/prosody-debian-packages.key /tmp/prosody.key
+
 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 \
       prosody \
       liblua5.2-dev \
@@ -12,6 +17,7 @@ RUN \
       libssl1.0-dev \
       lua-basexx \
       lua-ldap \
+      lua-sec \
       luarocks \
       git \
       gcc \