浏览代码

prosody: fix building unstable images

Saúl Ibarra Corretgé 4 年之前
父节点
当前提交
9bc262a40f
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      prosody/Dockerfile

+ 3 - 2
prosody/Dockerfile

@@ -1,6 +1,7 @@
 ARG JITSI_REPO=jitsi
+ARG BASE_TAG=latest
 
-FROM ${JITSI_REPO}/base as builder
+FROM ${JITSI_REPO}/base:${BASE_TAG} as builder
 
 RUN \
     apt-dpkg-wrap apt-get update \
@@ -16,7 +17,7 @@ RUN \
     && luarocks install net-url 0.9-1 \
     && luarocks install luajwtjitsi 2.0-0
 
-FROM ${JITSI_REPO}/base
+FROM ${JITSI_REPO}/base:${BASE_TAG}
 
 ENV XMPP_CROSS_DOMAIN="false"