From 62ea9868ae99525a8de56b46569a68a44ae488bd Mon Sep 17 00:00:00 2001 From: Andy Pfister Date: Sun, 14 Jul 2024 13:09:07 +0200 Subject: [PATCH] Adjust comments in Debian Dockerfile There is no Alpine in our Debian Docker image, so we can delete these comments. --- Dockerfile.bookworm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile.bookworm b/Dockerfile.bookworm index 271ad53..87aa10f 100644 --- a/Dockerfile.bookworm +++ b/Dockerfile.bookworm @@ -22,8 +22,6 @@ RUN mkdir ${BUILD_ROOT} WORKDIR ${BUILD_ROOT} # Install things needed for development -# We might want to install "alpine-sdk" instead of "build-base", if build-base -# doesn't have everything we need RUN apt update && \ apt upgrade && \ apt install -y build-essential libicu-dev liblz4-dev locales tzdata zlib1g-dev libzstd-dev wget pkg-config && \ @@ -134,7 +132,7 @@ RUN cd postgresql-16.* && \ make install-world && \ rm -rf /usr/local-pg16/include -# Use the PostgreSQL Alpine image as our output image base +# Use the PostgreSQL Bookworm image as our output image base FROM postgres:${PGTARGET}-bookworm # We need to define this here, to make the above PGTARGET available after the FROM