Updated docs
[citadel-docker.git] / Dockerfile
1 # Dockerfile for Citadel
2 #
3 # Copyright (c) 2019-2022 by the citadel.org team
4 #
5 # This program is open source software.  Use, duplication, or disclosure
6 # is subject to the terms of the GNU General Public License, version 3.
7
8 # This script implements a two stage build.  In the first stage we load in a full set of
9 # development tools and build all of the components, including a version of Berkeley DB newer than
10 # the one supplied in the repo.  Everything in /usr/local is copied into the second stage, which
11 # is built with only runtime libraries to keep the image small.
12
13 ####################################################################################################
14
15 # Debian Slim has all of the architectures we build on (amd64, i386, arm32)
16 # The first stage build will bring in all of our development tools.
17 FROM debian:bullseye-slim AS build-stage
18
19 # The "branch" argument specifies the branch or tag from which we will build.
20 ARG branch=master
21
22 # All long term persistent data goes here.  Any volume driver may be used.
23 VOLUME /citadel-data
24
25 # Install prerequisites
26 RUN apt -y update
27 RUN apt -y install gcc bison make zlib1g-dev libldap2-dev libssl-dev gettext libical-dev libexpat1-dev curl libcurl4-openssl-dev git autoconf automake netbase libreadline-dev
28
29 # Build our own local copy of Berkeley DB, because the one included with the system libs is too old.
30 # We will install it to /usr/local and carry it over to the second stage build.
31 RUN sh -c 'mkdir /tmp/db_build && \
32         cd /tmp/db_build && \
33         curl -k https://easyinstall.citadel.org/db-6.2.32.NC.tar.gz | tar xvzf - && \
34         cd db-6.2.32.NC/build_unix && \
35         ../dist/configure --prefix=/usr/local --disable-static --disable-compat185 --disable-cxx --disable-debug --disable-dump185 --disable-java --disable-tcl --disable-test --without-rpm && \
36         make && \
37         make install && \
38         cd /tmp && \
39         rm -fr /tmp/db_build'
40
41 # Create our build directory
42 RUN mkdir /tmp/ctdl_build
43
44 # Deploy "ctdlvisor", a small supervisor program which runs inside the container to wrangle the various services
45 ADD ctdlvisor.c /tmp
46 RUN sh -c '\
47         cd /tmp && \
48         cc ctdlvisor.c -o /usr/local/bin/ctdlvisor && \
49         rm -vf /tmp/ctdlvisor.c'
50
51 # Grab the repository at the specified branch or tag.  If there wasn't any change we should enjoy the cache.
52 RUN sh -c '\
53         cd /tmp/ctdl_build && \
54         git clone -b $branch --single-branch git://git.citadel.org/citadel'
55
56 # Build libcitadel
57 RUN sh -c '\
58         cd /tmp/ctdl_build/citadel/libcitadel && \
59         ./bootstrap && \
60         ./configure --prefix=/usr/local && \
61         make && \
62         make install'
63
64 # Build the Citadel Server
65 RUN sh -c '\
66         export CFLAGS=-I/usr/local/include && \
67         export LDFLAGS=-L/usr/local/lib && \
68         cd /tmp/ctdl_build/citadel/citadel && \
69         ./bootstrap && \
70         ./configure && \
71         make && \
72         make install'
73
74 # Build the WebCit front end
75 RUN sh -c '\
76         export CFLAGS=-I/usr/local/include && \
77         export LDFLAGS=-L/usr/local/lib && \
78         cd /tmp/ctdl_build/citadel/webcit && \
79         ./bootstrap && \
80         ./configure && \
81         make && \
82         make install'
83
84 # Build the text mode client
85 RUN sh -c '\
86         export CFLAGS=-I/usr/local/include && \
87         export LDFLAGS=-L/usr/local/lib && \
88         cd /tmp/ctdl_build/citadel/textclient && \
89         ./configure --prefix=/usr --ctdldir=/citadel_data && \
90         make && make install && \
91         cd /tmp && \
92         rm -vfr /tmp/ctdl_build && \
93         rm -vrf /usr/local/citadel/data /usr/local/citadel/files /usr/local/citadel/keys /usr/local/webcit/keys'
94
95 ####################################################################################################
96
97 # Second stage build only needs runtime libraries.
98 FROM debian:bullseye-slim AS final-stage
99
100 # All long term persistent data goes here.  Any volume driver may be used.
101 VOLUME /citadel-data
102
103 # Install prerequisites
104 RUN apt -y update
105 RUN apt -y install zlib1g libical3 libexpat1 curl libcurl4 netbase libreadline8 libldap-2.4-2 libssl1.1
106
107 # Bring in Citadel and libraries
108 COPY --from=build-stage /usr/local/ /usr/local/
109 RUN ldconfig -v
110
111 # Ports
112 EXPOSE 25 80 110 119 143 443 465 504 563 587 993 995 2020 5222
113
114 # Let's go!
115 ENTRYPOINT ["/usr/local/bin/ctdlvisor"]
116