From a59bef1afe166841bd673c2ab6122af2a3b3f75d Mon Sep 17 00:00:00 2001 From: Fernando Ripoll Date: Tue, 25 Apr 2017 09:35:07 +0200 Subject: [PATCH] Update Dockerfile to be able to build 17.04 ejabberd version 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 73bd93d42..6de6f5783 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM debian:jessie-slim MAINTAINER Rafael Römhild -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 \