From 1fb375e38090ed6da1b2e9d856e9ec0125e5a7b1 Mon Sep 17 00:00:00 2001 From: gindibay Date: Tue, 14 Nov 2023 09:25:44 +0300 Subject: [PATCH] Fixes missing updates in tools --- Dockerfile | 4 ++-- alpine/Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1d5facb..8555292 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,8 +20,8 @@ RUN apt-get update \ curl \ && curl -s https://install.citusdata.com/community/deb.sh | bash \ && apt-get install -y postgresql-$PG_MAJOR-citus-12.1=$CITUS_VERSION \ - postgresql-$PG_MAJOR-hll=2.17.citus-1 \ - postgresql-$PG_MAJOR-topn=2.5.0.citus-1 \ + postgresql-$PG_MAJOR-hll=2.18.citus-1 \ + postgresql-$PG_MAJOR-topn=2.6.0.citus-1 \ && apt-get purge -y --auto-remove curl \ && rm -rf /var/lib/apt/lists/* diff --git a/alpine/Dockerfile b/alpine/Dockerfile index aaf0bfb..3194f88 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -20,8 +20,9 @@ RUN apk add --no-cache \ curl-dev \ openssl-dev \ ca-certificates \ - clang \ llvm \ + llvm15-dev \ + clang15 \ lz4-dev \ zstd-dev \ libxslt-dev \