]> granicus.if.org Git - ejabberd/commitdiff
Update Dockerfile to be able to build 17.04 ejabberd version
authorFernando Ripoll <pipo02mix@gmail.com>
Tue, 25 Apr 2017 07:35:07 +0000 (09:35 +0200)
committerGitHub <noreply@github.com>
Tue, 25 Apr 2017 07:35:07 +0000 (09:35 +0200)
Because the default installation prefix has changed in the new release, it is needed to add in the configure line of Docker file the argument  --prefix=/

Dockerfile

index 73bd93d42e57da4ef90d97a870d75fefd34cca59..6de6f5783030df323511a0ed6e5c5d10cad0388c 100644 (file)
@@ -1,7 +1,7 @@
 FROM debian:jessie-slim
 MAINTAINER Rafael Römhild <rafael@roemhild.de>
 
-ENV EJABBERD_BRANCH=17.03 \
+ENV EJABBERD_BRANCH=17.04 \
     EJABBERD_USER=ejabberd \
     EJABBERD_HTTPS=true \
     EJABBERD_STARTTLS=true \
@@ -68,6 +68,7 @@ RUN set -x \
     && chmod +x ./autogen.sh \
     && ./autogen.sh \
     && ./configure --enable-user=$EJABBERD_USER \
+        --prefix=/ \
         --enable-all \
         --disable-tools \
         --disable-pam \