]> code.citadel.org Git - citadel-docker.git/blobdiff - Dockerfile
Dockerfile: install textclient to /usr/local. Thanks to sharivegas
[citadel-docker.git] / Dockerfile
index 0db03ed2618a30c6275289dd04a92f0dccfbe241..a6f8dccd1c76284d688c17504817b53e14ddf5bd 100644 (file)
@@ -1,6 +1,6 @@
 # Dockerfile for Citadel
 #
-# Copyright (c) 2019-2022 by the citadel.org team
+# Copyright (c) 2019-2023 by the citadel.org team
 #
 # This program is open source software.  Use, duplication, or disclosure
 # is subject to the terms of the GNU General Public License, version 3.
@@ -86,7 +86,7 @@ RUN sh -c '\
        export CFLAGS=-I/usr/local/include && \
        export LDFLAGS=-L/usr/local/lib && \
        cd /tmp/ctdl_build/citadel/textclient && \
-       ./configure --prefix=/usr --ctdldir=/citadel_data && \
+       ./configure --prefix=/usr/local --ctdldir=/citadel_data && \
        make && make install && \
        cd /tmp && \
        rm -vfr /tmp/ctdl_build && \
@@ -109,7 +109,7 @@ COPY --from=build-stage /usr/local/ /usr/local/
 RUN ldconfig -v
 
 # Ports
-EXPOSE 25 80 110 119 143 443 465 504 563 587 993 995 2020 5222
+EXPOSE 25 80 110 119 143 443 465 504 563 587 993 995 5222
 
 # Let's go!
 ENTRYPOINT ["/usr/local/bin/ctdlvisor"]