FROM ubuntu:latest RUN apt-get update RUN apt-get install -y git make gnustep gnustep-make gnustep-devel gnustep-base-runtime libgnustep-base-dev libxml2-dev libmemcached-dev libssl-dev libldap-dev libldap2-dev libpq-dev libz-dev libsodium-dev pkg-config libzip-dev libcurl4-openssl-dev WORKDIR /tmp RUN git clone --depth 1 --branch SOPE-5.11.0 https://github.com/Alinto/sope SOPE WORKDIR /tmp/SOPE RUN ./configure --with-gnustep --enable-debug --disable-strip RUN make RUN make install RUN ldconfig WORKDIR /tmp RUN git clone --depth 1 --branch SOGo-5.11.0 https://github.com/Alinto/SOGo WORKDIR /tmp/SOGo RUN ./configure --enable-debug --disable-strip RUN make RUN make install