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=/
This commit is contained in:
Fernando Ripoll 2017-04-25 09:35:07 +02:00 committed by GitHub
parent c923bb5c10
commit a59bef1afe
1 changed files with 2 additions and 1 deletions

View 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 \