diff options
author | Christophe Romain <cromain@users.noreply.github.com> | 2017-05-03 09:29:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-03 09:29:23 +0200 |
commit | cd1c41e4486f959b1612cf29f0fb40dbd9b83bb9 (patch) | |
tree | a1848b0850132f249371a604eea64363f1be5b1e | |
parent | Validate new options before module reloading (diff) | |
parent | Update Dockerfile to be able to build 17.04 ejabberd version (diff) |
Merge pull request #1697 from pipo02mix/dockerfile-17-04
Update Dockerfile to be able to build 17.04 ejabberd version
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
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 <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 \ |