From: Art Cancro Date: Thu, 1 Dec 2022 02:12:55 +0000 (-0500) Subject: moved update block and fixed comment X-Git-Url: https://code.citadel.org/?p=citadel-docker.git;a=commitdiff_plain;h=814ac927d1654786a62775055680ebef4c2f55b1 moved update block and fixed comment --- diff --git a/Dockerfile b/Dockerfile index edd87bc..87aaeaf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,14 @@ # Dockerfile for Citadel -# This container is built on MiniDeb, a stripped down version of Debian for use in containers. -# Rehosting on another base Linux image is not expected to create compatibility issues. +# Originally we built on MiniDeb, a stripped down version of Debian for use in containers. +# Now it's on Debian Slim because we want to build on i386 and arm32. FROM debian:stable-slim # All long term persistent data goes here. Any volume driver may be used. VOLUME /citadel-data -RUN apt -y update - # Install prerequisites +RUN apt -y update 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 # Build our own local copy of Berkeley DB, because the one included with the system libs is too old.