Revived this old project to run Citadel in a Docker container. It uses 'ctdlvisor...
[citadel-docker.git] / Dockerfile
index 38711f29ad96a0dfc17e8e79f7c9641af124a295..96547e0b086c3be3a05ba8f92b4190eab3e2df1f 100644 (file)
@@ -3,10 +3,7 @@ FROM bitnami/minideb:latest
 VOLUME /citadel-data
 
 # Install prerequisites
-RUN install_packages make build-essential zlib1g-dev libldap2-dev libssl-dev gettext libical-dev libexpat1-dev curl libcurl4-openssl-dev git autoconf automake netbase supervisor
-
-# Download and build libsieve
-RUN sh -c '( curl http://easyinstall.citadel.org/libsieve-2.2.7-ctdl2.tar.gz | tar xvzf - ) && cd libsieve-2.2.7/src && ./configure --prefix=/usr && make && make install'
+RUN install_packages make build-essential zlib1g-dev libldap2-dev libssl-dev gettext libical-dev libexpat1-dev curl libcurl4-openssl-dev git autoconf automake netbase libreadline-dev
 
 # Download and build Citadel
 WORKDIR /tmp/ctdl_build
@@ -18,13 +15,12 @@ RUN sh -c 'cd /tmp/ctdl_build/citadel/textclient && ./bootstrap && ./configure -
 RUN sh -c 'cd /tmp && rm -vfr /tmp/ctdl_build'
 RUN sh -c 'rm -vrf /usr/local/citadel/data /usr/local/citadel/files /usr/local/citadel/keys /usr/local/webcit/keys'
 
-# Supervisor
-ADD supervisor.conf /etc/
-ADD citadel-docker-startup.sh /usr/local/bin/
-RUN sh -c 'chmod 755 /usr/local/bin/citadel-docker-startup.sh'
+# ctdlvisor is a supervisor process that handles all of the components
+ADD ctdlvisor.c /tmp/ctdl_build
+RUN sh -c 'cd /tmp/ctdl_build && cc ctdlvisor.c -o /usr/local/bin/ctdlvisor'
 
 # Ports
 EXPOSE 25 80 110 119 143 443 465 504 563 587 993 995 2020 5222
 
 # Let's go!
-CMD /usr/local/bin/citadel-docker-startup.sh
+ENTRYPOINT /usr/local/bin/ctdlvisor